body {
    font-family: "Cantarell",Helvetica,Arial,sans-serif;
     color:#363636; 
    font-size: 14px;
    font-style: normal;
    line-height: 1.4;
    /*color: #2f304c;*/
    /*min-width: 100vh;*/
    /* mobile viewport bug fix */
    /*min-width: -webkit-fill-available;*/
}

html {
    width: -webkit-fill-available;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

a,
.link,
.pointer, 
.drawer-trigger, 
.panel-list-toggle, 
.panel-toggle {
    cursor: pointer;
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
    font-weight: bold;
    line-height: 1.4;
    text-transform: none;
    font-style: normal;
}

    h1.form-title {
        font-family: "Saint-Tropez", Verdana, Arial, sans-serif;
        margin-top: 5px;
    }

.normal {
    font-weight: normal !important;
}

strong {
    font-weight: bold !important;
}

#appnav {
    background: white;
    margin-bottom: 0;
}



@media (min-width: 768px) {
    #appnav .navbar-nav > li > a {
        padding-top: 15px;
        padding-bottom: 27px;
        height: 50px;
        display: block;
    }
}

#appnav .navbar-toggle {
    background: #002c62;
}

    #appnav .navbar-toggle .icon-bar {
        background: #ffffff;
    }

#appnav .navbar-brand {
    height: 50px;
    width: 87.5px;
    padding: 5px;
}

    #appnav .navbar-brand > img {
        width: auto;
        height: 100%;
    }

.update-ribbon {
    padding: 20px 50px;
    font-size: 16px;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

    .update-ribbon a {
        color: white;
        margin-left: 20px;
        padding: 5px 10px;
        border-radius: 3px;
    }

    .update-ribbon.success {
        background: green;
        background-image: url(../../content/img/ok.svg);
        background-repeat: no-repeat;
        background-size: 30px 30px;
        background-position: 10px center;
        color: white;
    }

        .update-ribbon.success a {
            background: #4caf50;
        }

    .update-ribbon.error {
        background: #dd3c30;
        background-image: url(../../content/img/cancel.svg);
        background-repeat: no-repeat;
        background-size: 30px 30px;
        background-position: 10px center;
        color: white;
    }

        .update-ribbon.error a {
            background: #f44336;
        }

.validation-summary-errors {
    margin-bottom: 20px;
    min-height: 70px;
    border: solid 1px red;
    padding: 10px 10px 10px 70px;
    background: white url(../../content/img/cancel.svg) no-repeat;
    background-position: 10px 10px;
    background-size: 50px 50px;
}

    .validation-summary-errors ul {
        margin: 0;
    }

.main-container {
    background: #f5f5f5;
    padding: 20px 0;
}

    .main-container hr {
        border-color: #e3e3e3;
    }

.pagefooter {
    background: white;
    padding: 20px 0;
    text-align: center;
}

.txt-white {
    color: white;
}

.txt-red {
    color: red;
}

.text-dark {
    color: #363636;
}

.txt-green {
    color: green;
}

.txt-orange {
    color: orange;
}

.txt-normal {
    font-size: 1.5rem;
}
/* alert panels */
.alert {
    border-radius: 0;
    position: relative;
    padding-left: 70px;
}

    .alert.no-icon {
        padding-left: 10px;
    }

.alert-info {
    background: white;
    color: #363636;
}

.alert h1 {
    margin-top: 0;
}

.alet-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    margin: 10px;
}

.calendar {
    display: inline-block;
    vertical-align: middle;
    width: 56px;
    height: 55px;
    background: white;
    border-top: solid 5px red;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .calendar .date {
        line-height: 120%;
        font-weight: 400;
        font-size: 25px;
        /*font-family: arial;*/
    }

    .calendar .month {
        font-weight: 400;
        font-size: 12px;
    }

/* Staff boxes */
.team-right:after {
    content: "";
    position: absolute;
    left: -1px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #cccccc;
}

.staff-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #cccccc;
}

.staff-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 10px;
    border: solid 1px #dbdbdb;
    padding: 0;
    background: #f6f6f6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all .5s;
}

    .staff-box:hover {
        border-color: rgba(0, 44, 98, 0.5);
        background: #90caf9;
    }

.staff-icon {
    background: white;
    width: 55px;
    padding: 5px;
    text-align: center;
    font-size: 0.95rem;
}

    .staff-icon img {
        display: block;
    }

.staff-detail {
    padding: 10px;
    /* flex:2 1 auto */
    flex: 2 1 0;
    -ms-word-break: break-all;
    word-break: break-all;
    /* Non standard for webkit */
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

    .staff-detail .edit-btns {
        padding: 10px;
    }

    .staff-detail .details {
        font-size: 12px;
    }

.staff-box .alert-banner {
    width: 100%;
    padding: 5px;
    background: red;
    color: white;
    font-weight: 600;
}

    .staff-box .alert-banner a {
        color: white;
    }

.staff-box .warning-banner {
    width: 100%;
    text-align: center;
    background: orange;
    color: #333;
    font-weight: 600;
}

.btn {
    transition: all .5s;
}

.bt-edit:hover,
.bt-edit:active {
    background: #002c62;
    color: #fff;
}

.bt-save:hover,
.bt-save:active {
    background: #4caf50;
    color: #fff;
}

.btn-primary {
    background: #002c62;
}

.btn-naked {
    border: none;
    background: transparent;
}

.dropdown.mega .btn,
.dropdown.mega .dropdown-menu > li > a {
    font-size: 30px;
    color: #002c62;
}


.bt-remove:hover,
.bt-remove:active {
    background: #cf202d;
    color: #fff;
}

.staff-picker {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .staff-picker .staff-box {
        margin-right: 10px;
    }

    .staff-picker .staff-box {
        background: white;
        border-radius: 2px;
    }

        .staff-picker .staff-box:hover {
            border-color: rgba(0, 44, 98, 0.5);
            background: #c7e4fc;
        }

        .staff-picker .staff-box.active,
        .staff-picker .staff-box.active:hover {
            border-color: rgba(0, 44, 98, 0.5);
            background: #90caf9;
        }

        .staff-picker .staff-box.disabled,
        .staff-picker .staff-box.disabled:hover {
            border-color: #f5f5f5;
            background: #f5f5f5;
            color: #7d7d7d;
            opacity: 0.75;
            cursor: not-allowed;
        }

            .staff-picker .staff-box.disabled .staff-icon {
                background: transparent;
            }

        .staff-picker .staff-box .staff-detail {
            flex: 0 1 auto;
        }

.status-alert {
    border: solid 1px #dbdbdb
}

.table.vert-mid > tbody > tr > td {
    vertical-align: middle;
}

.status-table {
    margin-bottom: 0;
    font-size: 14px;
    border-bottom: 2px solid #ddd;
}

    .status-table img {
        width: 40px;
        height: 40px;
    }


.alert-row {
    margin: 5px 0;
    padding: 10px 10px 10px 50px;
    position: relative;
}

    .alert-row img {
        position: absolute;
        left: 5px;
        top: 5px;
        width: 40px;
        height: 40px;
    }

    .alert-row h5 {
        font-weight: bold;
        margin: 0;
    }

/* TABLES */
.table {
    background: white;
}

    .table .sort {
        background: #e6f2fb
    }

    .table thead th i {
        opacity: 0.5;
    }

    .table thead th.sort i {
        opacity: 1;
        font-weight: bold;
    }

.table-hover tbody tr:hover td {
    background: #b3d7f3;
}

.table > tbody > tr > td {
    vertical-align: middle;
}

.team-status {
    font-size: 12px;
    padding: 0 5px;
}

    .team-status img {
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
        display: block;
        margin: auto;
    }



/* FORMS */
.tf-xs {
    max-width: 50px;
}

.tf-sm {
    max-width: 100px;
}

.tf-med {
    max-width: 150px;
}

.tf-lg {
    max-width: 200px;
}

.tf-xl {
    max-width: 250px;
}

.required label:after {
    content: "*";
    color: red;
    font-size: 2rem;
    font-weight: bold;
}

.required label.checkbox-inline:after,
.required label.radio-inline:after {
    content: "";
}

.form-group .form-error {
    color: red;
    font-size: 1.0rem;
    margin: 5px 0 10px;
    display: none;
}

.form-group .field-validation-error {
    display: block;
    margin: 5px 0 0 10px;
    font-size: 12px;
}

    .form-group .field-validation-error:before {
        font-family: FontAwesome;
        content: "\f06a";
        font-weight: bold;
        color: #a94442;
        padding-right: 5px;
        font-size: 14px;
    }

.form-group.required.has-error .form-error {
    display: block;
}

.form-group.readonly .value {
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
}


.form-buttons {
    margin: 20px 0;
    padding: 20px 0;
    border-top: solid 1px #dbdbdb;
}


.page-buttons {
    margin: 50px 0 10px;
    padding: 20px 0;
    border-top: solid 1px #dbdbdb;
    text-align: right;
}

.border-box {
    border: solid 1px #dbdbdb;
    padding: 10px;
    margin: 10px 0;
    background: white;
}

.border-right {
    border-right: solid 1px #dbdbdb;
}

.border-left {
    border-left: solid 1px #dbdbdb;
}

.border-top {
    border-top: solid 1px #dbdbdb;
}

.border-bottom {
    border-bottom: solid 1px #dbdbdb;
}

.underlined {
    border-bottom: solid 3px #002c62;
}

.border-blue {
    border-color: #002c62 !important;
}

.border-thick {
    border-size: 3;
}


.teammate-adder h3 {
    margin-top: 0;
}

.teammate-adder label {
    display: block;
}

.details,
table.details * {
    font-size: 12px;
}

table.details th, td {
    padding: .2rem;
    vertical-align: top;
}

table.details th {
    text-align: right;
    white-space: nowrap;
    max-width: 100px;
}

.readonly h3 {
    margin-top: 30px;
}

.truncate {
    display: inline-block;
    width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.panel .title {
    font-size: 20px;
    font-weight: 600;
}

.panel .title-action {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.panel-header {
    padding: 10px;
}

    .panel-header .details {
        font-size: 12px;
        padding-left: 20px;
    }

.panel-body {
    padding-top: 10px;
    position: relative;
}

.status-balls {
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
    font-size: 12px;
}

    .status-balls > div {
        margin-right: 15px;
        text-align: center;
    }

        .status-balls > div:last-child {
            margin-right: 0;
        }

    .status-balls .ball {
        line-height: 200%;
        display: block;
        width: 30px;
        height: 30px;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        background: red;
        color: white;
        border-radius: 50%;
        margin: 0 auto;
    }

        .status-balls .ball.done {
            background: green;
        }

        .status-balls .ball i {
            line-height: 200%;
        }

.section-title {
    margin-top: 60px;
}

section h2.title {
    font-size: 16px;
    background: #f6f6f6;
    padding: 5px;
}

section .detail-row {
    padding: 10px;
    border-bottom: solid 1px #dbdbdb;
}

    section .detail-row:last-of-type {
        border-bottom: none;
    }

    section .detail-row .title {
        font-size: 14px;
        font-weight: 600;
    }

.action-tiles {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

    .action-tiles .tile {
        flex: 1 1 auto;
        margin: 10px;
        text-align: center;
        min-height: 140px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: all .5s;
        font-size: 14px;
        padding: 10px;
        position: relative;
        color: #002c62;
    }

    .action-tiles.tile-width-1 {
        justify-content: flex-start;
        align: content:flex-start;
    }

        .action-tiles.tile-width-1 .tile {
            width: 170px;
            flex: 0 1 auto;
        }

    .action-tiles .tile .text-sm {
        height: 20px;
    }

    .action-tiles .tile .shout {
        /*font-family: arial;*/
        font-size: 40px;
        margin-bottom: 10px;
    }

    .action-tiles .tile img {
        display: block;
        width: 40px;
        height: 40px;
        margin: 10px auto;
    }

    .action-tiles .tile .action {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: #f5f5f5;
        padding: 5px;
    }

.ptile {
    background-color: #f6f6f6;
    margin-bottom: 10px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

    .ptile .ptile-number {
        position: relative;
        width: 65px;
        min-height: 60px;
        background-color: white;
        flex: 0 0 65px;
        order: 0;
        font-size: 24px;
        font-weight: bold;
        color: blue;
        text-align: center;
    }

        .ptile .ptile-number.no-rsvp {
            background: red;
            color: white;
            font-size: 14px;
        }

        .ptile .ptile-number.declined {
            background: #595959;
            color: white;
            font-size: 14px;
        }

        .ptile .ptile-number.pending-approval {
            background: orange;
            color: white;
            font-size: 14px;
        }

        .ptile .ptile-number:after {
            content: "";
            background: url(../img/icon_player.png);
            background-repeat: no-repeat;
            background-position: center center;
            opacity: 0.25;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            position: absolute;
            z-index: 1;
        }

        .ptile .ptile-number.no-rsvp:after,
        .ptile .ptile-number.pending-approval:after,
        .ptile .ptile-number.declined:after {
            content: "";
            background: none;
        }

.ptile-details {
    padding: 10px;
    flex: 1 1 auto;
}

    .ptile-details h4 {
        margin: 0;
    }

.ptile-actions {
    font-size: 20px;
    padding-right: 20px;
}
/** admin related **/
.field-sport-section {
    border: solid 1px #dbdbdb;
    margin-bottom: 20px;
    padding: 10px;
}

    .field-sport-section .field-sport-toggle img {
        width: 30px;
        height: 30px;
    }

    .field-sport-section.include img.include {
        display: inline-block;
    }

    .field-sport-section.include img.exclude {
        display: none;
    }

    .field-sport-section img.include {
        display: none;
    }

    .field-sport-section img.exclude {
        display: inline-block;
    }

    .field-sport-section .field-sport-details {
        display: none;
        margin-bottom: 30px;
        padding: 10px;
    }

/* tournament setup related */
.check-table {
}

    .check-table thead img,
    .check-table tbody .rowcheck img {
        width: 30px;
        height: 30px;
    }

    .check-table .rowcheck {
        cursor: pointer;
    }

    .check-table tr .rowcheck .exclude {
        display: inline-block;
    }

    .check-table tr .rowcheck .include {
        display: none;
    }

    .check-table tr.dim .rowcheck {
        opacity: 0.35;
    }

    .check-table tr.chosen .rowcheck .exclude {
        display: none;
    }

    .check-table tr.chosen .rowcheck .include {
        display: inline-block;
    }

    .check-table .rowcheck tbody tr:hover {
        background: #e1f5fe;
    }

    .check-table td.has-error {
        background: #ffcccc;
    }

    .check-table .required {
        color: red;
        font-size: 16px;
        display: none;
    }

.drawer {
    border: solid 1px #ddd;
    padding: 10px;
    margin: 5px 0;
    background: white;
}

    .drawer .drawer-title {
        clear: both;
    }

    .drawer.closed .drawer-detail {
        display: none;
    }

    .drawer.chosen {
        border: solid 2px #558b2f;
    }

.fieldstats li {
    text-align: center;
    border: solid 1px #ddd;
    padding: 5px;
    margin: 5px 0;
    background: white;
}

    .fieldstats li .total {
        font-weight: bold;
        /*font-family: arial;*/
        font-size: 16px;
    }

    .fieldstats li .label {
        color: #363636;
    }

    .fieldstats li .shout {
        font-weight: bold;
        color: red;
    }

    .fieldstats li > ul.list-inline > li {
        border: none;
        padding: 0 5px;
        margin: 0;
    }

.table-vertical-top > tbody > tr > td {
    vertical-align: top;
}

.toggle-table .row-details {
    display: none;
}

.toggle-table .expand .row-details {
    display: block;
}

/*** tournament list and cart page ***/
.cart-header {
    background: #dbdbdb;
    padding: 10px;
}

    .cart-header .shout {
        font-size: 18px;
        font-weight: 600;
    }

.btn-orange {
    background: orange;
    color: #000;
}

.btn-loud {
    font-size: 20px;
    width: 100%;
}

.btn-lines {
    background: white;
    border-color: #dbdbdb;
    font-weight: bold;
}

    .btn-lines .shout {
        font-weight: bold;
        color: red;
    }

.full {
    position: relative;
}

.triangle {
    width: 0;
    height: 0;
    border-top: 120px solid #dd1e31;
    border-right: 120px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.urgency {
    position: absolute;
    top: 15px;
    left: 14px;
    z-index: 1;
    color: white;
    transform: rotate(-45deg);
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}

.search-result .triangle,
.search-result .urgency {
    display: none;
}

.search-result.full .triangle,
.search-result.full .urgency {
    display: block;
}

.relative {
    position: relative;
}

.cart-btn {
    background: white;
    color: #333;
    font-weight: bold;
}

    .cart-btn img {
        width: 30px;
    }

    .cart-btn .count {
        font-size: 20px;
        /*font-family: arial;*/
    }

.team-action-buttons {
    text-align: right;
}

@media (max-width: 700px) {
    .team-action-buttons {
        /* text-align:center;*/
    }

    .cart-btn, .cart-btn .count {
        font-size: 12px;
    }

        .cart-btn img {
            width: 20px;
        }
}

.cartrow {
    /*margin-right: -50% !important;*/
    /*margin-left: -15px;*/
    margin-left: 15px;
    width: 90%;
    display: inline-block;
    padding: 0%;
}


.cartitemrow {
    /*margin-left: -15px;*/
    margin-left: 15px;
    width: 100%;
    display: inline-block;
    padding: 0%;
}

.cartreqlink {
    /*margin-right: -50% !important;*/
    /*margin-left: -15px;*/

    display: inline-block;
    padding: 0%;
    display: inline-block;
    padding-left: 12%;
    vertical-align: middle;
}


.meta-list {
    margin-top: 20px;
}

    .meta-list > li {
        margin-bottom: 10px;
        font-weight: bold;
    }

        .meta-list > li i {
            color: #002c62;
            font-size: 16px;
        }

.search-result {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #dbdbdb;
}

.results-list-wrapper {
    position: relative;
}

.cart-panel {
    background: white;
    border-left: solid 1px #dbdbdb;
    -webkit-box-shadow: -2px 0px 5px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px 0px 5px -1px rgba(0,0,0,0.75);
    box-shadow: -2px 0px 5px -1px rgba(0,0,0,0.75);
    z-index: 100;
    position: fixed;
    width: 400px;
    top: 0;
    right: 0;
    bottom: 0;
    transition: transform 500ms ease;
    transform: translateX(100%);
}

    .cart-panel.open {
        transform: translateX(0%);
    }

    .cart-panel .row {
        margin-left: 0;
        margin-right: 0;
    }

    .cart-panel .cart-footer {
        position: absolute;
        left: 0;
        right: 0;
    }

    .cart-panel .cart-footer {
        bottom: 0;
        height: 50px;
        padding: 10px;
        text-align: center;
    }

    .cart-panel .cart-list {
        position: absolute;
        top: 170px;
        right: 0;
        bottom: 30px;
        left: 0;
        overflow-y: auto;
        padding: 10px;
        margin-bottom: 20px;
    }

.cart-list .line-item {
    padding: 5px 0;
    border-bottom: solid 1px #dbdbdb;
}

    .cart-list .line-item .price {
        text-align: right;
        font-size: 20px;
    }

.nbr {
    /*font-family: arial;*/
}

.cart-panel .cart-header {
}

.cart-panel .cart-list {
}

.cart-panel .cart-footer {
}

.add2cart {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 350px;
    background: white;
    border: solid 1px orange;
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
    z-index: 80;
    padding: 10px 10px 10px 80px;
    /*background-image: url(https://traininglegen2.staging.wpengine.com/wp-content/uploads/2017/07/SSS3fs.png);*/
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: 10px;
    display: none;
}

.filter-bar {
    padding: 10px;
    background: rgba(0,0,0,0.15);
}

    .filter-bar label {
        font-size: 12px;
        margin-bottom: 0;
    }






.aligner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aligner-item {
}


.bold {
    font-weight: bold;
}

.text-sm {
    font-size: 11px;
}

.text-md {
    font-size: 12px;
}

.text-norm {
    font-size: 14px;
}

.text-large {
    font-size: 20px;
}

.amount {
    text-align: right;
}

.border-good {
    border-color: green !important;
}

.border-bad {
    border-color: red !important;
}
/* Utilities */
.width-auto {
    width: auto;
}

/* image / icon sizes */
.img-20cube {
    width: 20px;
    height: 20px;
}

.img-30cube {
    width: 30px;
    height: 30px;
}

.img-40cube {
    width: 40px;
    height: 40px;
}

.img-50cube {
    width: 50px;
    height: 50px;
}



/* display styles */
.block {
    display: block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.inline-block {
    display: inline-block;
    vertical-align: middle;
}

.inline-flex {
    display: inline-flex;
}

.inline-grid {
    display: inline-grid;
}



/* alignment and spacing classes */
.align-content-center {
    align-content: center;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-items-center {
    justify-items: center;
}

.vat {
    vertical-align: middle;
}

.btn-round {
    border-radius: 50%;
    padding: 10px;
}

.bg-color1 {
    background: white;
}


.nbt {
    margin-top: 0;
}

.nbb {
    margin-bottom: 0;
}

.nbr {
    margin-right: 0;
}

.nbl {
    margin-left: 0;
}

.bt {
    margin-top: 10px;
}

.bl {
    margin-left: 10px;
}

.br {
    margin-right: 10px;
}

.bb {
    margin-bottom: 10px;
}

.bt-sm {
    margin-top: 5px;
}

.br-sm {
    margin-right: 5px;
}

.bb-sm {
    margin-bottom: 5px;
}

.bl-sm {
    margin-left: 5px;
}

.ph-sm {
    padding-left: 5px;
    padding-right: 5px;
}

.pv-sm {
    padding-top: 5px;
    padding-bottom: 5px;
}

.pt {
    padding-top: 10px;
}

.pr {
    padding-right: 10px;
}

.pb {
    padding-bottom: 10px;
}

.pl {
    padding-left: 10px;
}

.pad {
    padding: 10px;
}

.pad-lg {
    padding: 20px;
}

.pad-mega {
    padding: 50px;
}

.bt-mega {
    margin-top: 50px;
}

.bt-lg {
    margin-top: 20px;
}

.bl-lg {
    margin-left: 20px;
}

.bb-lg {
    margin-bottom: 20px;
}

.br-lg {
    margin-right: 20px;
}

.pt-lg {
    padding-top: 20px;
}

.pr-lg {
    padding-right: 20px;
}

.pb-lg {
    padding-bottom: 20px;
}

.pl-lg {
    padding-left: 20px;
}

.sm-gutter {
    padding-right: 5 !important;
    padding-left: 5 !important;
}
/* list item top margin classes */
ul.lb5 > li {
    margin-top: 5px;
}

ul.lb10 > li {
    margin-top: 10px;
}



/* media queries */
@media (max-width: 992px) {
    .md-bt {
        margin-top: 10px;
    }

    .md-.bl {
        margin-left: 10px;
    }

    .md-.br {
        margin-right: 10px;
    }

    .md-.bb {
        margin-bottom: 10px;
    }

    .md-.pt {
        padding-top: 10px;
    }

    .md-.pr {
        padding-right: 10px;
    }

    .md-.pb {
        padding-bottom: 10px;
    }

    .md-.pl {
        padding-left: 10px;
    }

    .md-.bt-lg {
        margin-top: 20px;
    }

    .md-.bl-lg {
        margin-left: 20px;
    }

    .md-.bb-lg {
        margin-bottom: 20px;
    }

    .md-.br-lg {
        margin-right: 20px;
    }

    .md-.pt-lg {
        padding-top: 20px;
    }

    .md-.pr-lg {
        padding-right: 20px;
    }

    .md-.pb-lg {
        padding-bottom: 20px;
    }

    .md-.pl-lg {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .sm-bt {
        margin-top: 10px;
    }

    .sm-.bl {
        margin-left: 10px;
    }

    .sm-.br {
        margin-right: 10px;
    }

    .sm-.bb {
        margin-bottom: 10px;
    }

    .sm-.pt {
        padding-top: 10px;
    }

    .sm-.pr {
        padding-right: 10px;
    }

    .sm-.pb {
        padding-bottom: 10px;
    }

    .sm-.pl {
        padding-left: 10px;
    }

    .sm-.bt-lg {
        margin-top: 20px;
    }

    .sm-.bl-lg {
        margin-left: 20px;
    }

    .sm-.bb-lg {
        margin-bottom: 20px;
    }

    .sm-.br-lg {
        margin-right: 20px;
    }

    .sm-.pt-lg {
        padding-top: 20px;
    }

    .sm-.pr-lg {
        padding-right: 20px;
    }

    .sm-.pb-lg {
        padding-bottom: 20px;
    }

    .sm-.pl-lg {
        padding-left: 20px;
    }
}

@media (max-width: 600px) {
    .cart-panel {
        width: 100%;
    }
}

.border-thick {
    border-width: 3;
}


.hyphenate {
    -ms-word-break: break-all;
    word-break: break-all;
    /* Non standard for webkit */
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

/* Make admin list pages full width */
.admin-list .main-container,
.admin-list .main-container .container {
    width: 100%;
}

.alert-info:not(.no-icon) {
    background-image: url(/content/img/bg_info.svg);
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: 10px 50%;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-25 {
    padding-top: 25px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.dropdown-menu li {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 5px;
}

.cursor-pointer {
    cursor: pointer;
}

.width-100-percent {
    width: 100%
}

.red-shout {
    font-weight: bold;
    color: #990000;
}

/*********************** New Coach Dashboard ********************/
.panel.boxy {
    border-radius: 0;
    border: none;
    box-shadow: 0 1px 1px rgba(0,0,0,.25);
}

.tourney-panel {
    display: flex;
    align-items: center;
}

    .tourney-panel h3 {
        margin-bottom: 0;
    }

    .tourney-panel ul {
        margin-top: 0;
    }

    .tourney-panel .logo {
        margin-right: 20px;
        background-color: transparent;
    }

.panel-footer {
    background: #e5e9ef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.tourney-status img {
    width: 60px;
    display: block;
    margin: auto;
}

.col-red {
    background: #ebcccc;
}

.col-green {
    background: #cee0d0;
}

.col-grey {
    background: rgba(0,0,0,0.05);
}

thead#amount-header, tfoot.tfoot {
    background: #f5f5f5;
    font-weight: bold;
    font-size: 18px;
}

.table-condensed {
    font-size: 12px;
}

.bv-mega {
    margin-top: 50px;
    margin-bottom: 50px;
}

.red-shout {
    font-weight: bold;
    color: #990000;
}

.bg-trans {
    background-color: transparent
}

/* Note Panel*/
.note-panel {
    background: white;
    border-left: solid 1px #dbdbdb;
    -webkit-box-shadow: -2px 0px 5px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px 0px 5px -1px rgba(0,0,0,0.75);
    box-shadow: -2px 0px 5px -1px rgba(0,0,0,0.75);
    z-index: 100;
    position: fixed;
    width: 400px;
    top: 0;
    right: 0;
    bottom: 0;
    transition: transform 500ms ease;
    transform: translateX(100%);
}

    .note-panel.open {
        transform: translateX(0%);
    }

    .note-panel .row {
        margin-left: 0;
        margin-right: 0;
    }

    .note-panel .note-footer {
        position: absolute;
        left: 0;
        right: 0;
    }

    .note-panel .note-footer {
        bottom: 0;
        height: 50px;
        padding: 10px;
        text-align: center;
    }

    .note-panel .note-list {
        position: absolute;
        top: 300px;
        right: 0;
        bottom: 30px;
        left: 0;
        overflow-y: auto;
        padding: 10px;
        margin-bottom: 20px;
    }

    .note-panel .form-inline {
        width: 100%;
        padding-left: 15px;
    }

    .note-panel.note-bind ul {
        list-style-type: none;
    }



.note-list .line-item {
    padding: 5px 0;
    border-bottom: solid 1px #dbdbdb;
}

#cookieConsent {
    z-index: 1;
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: #D34949;
    color: white;
    text-align: center;
    font-size: 16px;
}

    #cookieConsent a {
        color: white;
    }

    #cookieConsent button.cookieAccept {
        background: white;
        color: black;
        border: none;
        border-radius: 0.2em;
        margin: 0.5em;
        padding: 0.2em 0.5em 0.2em 0.5em;
        border-radius: 150px;
        padding: 8px 30px;
    }

.container-wide {
    padding-left: 20px;
    padding-right: 20px;
}

    .container-wide .container {
        width: 100%;
    }

.container-admin .row .tourn-nav {
    border-right: solid #337ab7 1px;
}

    .container-admin .row .tourn-nav .nav.nav-pills.nav-stacked {
        padding: 0 0 0 0;
    }

.max-width-70px {
    max-width: 70px;
}


@media (max-width: 767px) {
    .navbar-nav > li > a {
        font-size: 30px;
    }

    .navbar-nav .open .dropdown-menu > li > a {
        font-size: 30px;
    }
}

.text-align-center {
    text-align: center;
}

@media (max-width: 990px) {
    img.center-block.tourney-img.img-responsive.bg-trans {
        max-width: 300px;
    }
}

/* Right panel */
.right-panel {
    background: white;
    border-left: solid 1px #dbdbdb;
    -webkit-box-shadow: -2px 0px 5px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px 0px 5px -1px rgba(0,0,0,0.75);
    box-shadow: -2px 0px 5px -1px rgba(0,0,0,0.75);
    z-index: 100;
    position: fixed;
    width: 400px;
    top: 0;
    right: 0;
    bottom: 0;
    transition: transform 500ms ease;
    transform: translateX(100%);
}

.right-panel.open {
    transform: translateX(0%);
}

.right-panel .row {
    margin-left: 0;
    margin-right: 0;
}

.right-panel .panel-footer {
    position: absolute;
    left: 0;
    right: 0;
}

.right-panel .panel-footer {
    bottom: 0;
    height: 50px;
    padding: 10px;
    text-align: center;
}

.right-panel .list {
    position: absolute;
    top: 300px;
    right: 0;
    bottom: 30px;
    left: 0;
    overflow-y: auto;
    padding: 10px;
    margin-bottom: 20px;
}

.right-panel .inline {
    width: 100%;
    padding-left: 15px;
}