:root {
    --green: #18A668;
    --green-secondary: #55BC75;
    --dark-green: #214F4B;
    --blue: #5a83ab;
    --red: #ff6b49;
    --dark-grey: #555;
}

/* ******** MOBILE ******** */
@media ( max-width: 768px) {
    .mobile-hide {
        display: none;
    }
}

@media ( min-width: 769px) {
    .mobile-only {
        display: none;
    }
}

@media ( max-width: 992px) {
    .md-hide {
        display: none;
    }
}

@media ( min-width: 993px) {
    .md-only {
        display: none;
    }
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
    height: 4px;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .3);
    /* -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5); */
    width: 4px;
    border-radius: 6px;
}

/* ******** END MOBILE ******** */

/* ******** HEADER ******** */
.banner {
    background-color: var(--green);
    color: white;
    text-align: center;
    padding: 10px 0;
}

.banner:hover {
    cursor: pointer;
}

#primary-nav .navbar-brand img {
    height: 30px;
    padding-top: 0px;
    margin-top: -5px;
}

@media ( max-width: 885px) {
    #primary-nav .navbar-brand img {
        height: 25px !important;
    }

    #primary-nav .navbar a {
        font-size: 12px;
    }

    #primary-nav .navbar-right {
        font-size: 12px;
    }
}

@media ( max-width: 800px) {
    #primary-nav .navbar-brand img {
        margin-top: 10px;
        height: 20px !important;
    }
}

@media ( max-width: 767px) {
    #primary-nav .navbar-brand img {
        margin-top: 5px;
        height: 30px !important;
    }

    #primary-nav .navbar a {
        font-size: 16px;
    }

    #primary-nav .navbar-right {
        font-size: 16px;
    }
}

@media ( min-width: 768px) {
    #primary-nav .navbar .navbar-nav {
        display: inline-block;
        float: none;
        vertical-align: top;
    }

    #primary-nav .navbar .navbar-collapse {
        text-align: center;
    }
}

#primary-nav {
    margin-bottom: 50px !important;
}

#primary-nav .navbar {
    background-color: white !important;
    z-index: 50 !important;
}

#myNavbar .navbar-nav a:hover, .dropdown-menu li a:hover {
    color: var(--green);
}

.bottom-link {
    margin-top: 10px;
}

.dropdown-menu {
    border-radius: 0 !important;
    padding: 15px 0 !important;
}

.dropdown-menu li a {
    padding: 0 10px;
    color: inherit !important;
    font-size: inherit !important;
}

#sign-in {
    background-color: var(--green);
    padding: 6px 25px;
    margin: 8px;
    color: white !important;
    border-radius: 2px;
    font-weight: 500;
    border: 1px solid var(--green);
}

#primary-nav .navbar li #sign-in:hover {
    background-color: var(--green-secondary);
    border-color: var(--green-secondary) !important;
    color: white !important;
    font-weight: 400;
}

.navbar-logo {
    height: 30px;
    padding-top: 0px;
    margin-top: -5px;
}

/* ******** END HEADER ******** */


.titleize {
    text-transform: capitalize;
}

.secondary-nav-container {
    position: fixed;
    width: 100%;
    margin-top: 10px;
    z-index: 1;
    margin-bottom: 100px;
}

#secondary-nav {
    top: 50px !important;
    border-radius: 0 !important;
    padding-top: 0 !important;
    border-width: 0 !important;
    background-color: #18A668 !important;
    color: white !important;
    z-index: 1;
    min-height: 30px;
    margin-bottom: 0 !important;
    /* margin-bottom: 20px !important; */
}

#secondary-nav a, #secondary-nav .league-tools, #league-toolbar {
    color: white !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    font-weight: 400;
    font-size: 14px;
}

#secondary-nav .league-tools {
    float: none;
    margin-left: 10px;
}

#secondary-nav a:hover {
    color: #18A668 !important;
}

#secondary-nav .league-tools a:hover, #secondary-nav .league-tools:hover {
    color: white !important;
    font-weight: 600;
}

#second-nav .navbar {
    background-color: green !important;
}

#secondary-nav .navbar-right {
    margin-right: 15px;
}

/* ******** FOOTER ******** */
*, *:before, *:after {
    box-sizing: inherit;
}

html {
    min-height: 100%;
    height: 100%;
    box-sizing: border-box;
}

body, .app {
    margin: 0;
    position: relative;
    height: 100%;
    min-height: 100%;
    font-family: 'Open sans', Arial, sans-serif !important;
}

footer {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    background-color: #303539;
    color: #717785;
    padding: 40px 0;
}

footer a {
    display: block;
    font-size: 1.8rem;
    padding: 0 0 !important;
    margin: 5px 0;
    color: inherit;
}

footer a:hover {
    color: #999;
    text-decoration: none;
}

.fb, .twitter, .insta {
    font-size: 36px;
    display: inline-block;
}

.fb:hover {
    color: #4267B2;
}

.twitter:hover {
    color: #A37CED;
}

.insta:hover {
    color: #FEA53A;
}

.footer-header {
    color: white !important;
    margin-bottom: 3px;
    font-weight: 600;
    font-size: 16px;
}

.footer-header:hover {
    color: rgb(85, 188, 117) !important;
}

.icon-credit {
    font-size: 10px;
    text-align: right;
    color: #333 !important;
    background-color: #222;
}

.icon-credit a {
    font-size: 10px;
    color: #333 !important;
}

/* ******** END FOOTER ******** */

/* ******** CAROUSEL ******** */
.carousel-control {
    background-color: rgba(0, 0, 0, 0) !important;
    background-image: none !important;
}

.carousel-inner {
    margin: 0 auto;
}

/*

.carousel-inner>.item>img, .carousel-inner>.item>a>img {
	text-align: center !important; 
	
}

.carousel-indicators li {
  background-color: #999 !important;
  background-color: rgba(70,70,70,.25) !important;
}

.carousel-indicators .active {
  background-color: #444 !important;
}

.carousel { 
	background-color: #5b99b2;
	width: 100%;
	height: 500px;
}

.carousel-margin {
	padding-bottom: 60px !important;
}

.indicator-color {
	background-color: #999  !important;
	background-color: rgba(70,70,70,.25) !important;
}
.carousel-image {
	text-align: center !important;
	padding-bottom: 10px;
	
}

/* ******** END CAROUSEL ******** */

/* ******** BLOB ******** */
.blob {
    text-align: center;
    margin-bottom: 20px;
    border-radius: 10px !important;
}

.blob-head {
    background-color: #fff;
    padding: 20px 20px;
    height: 250px;
    border-radius: 3px 3px 0 0;
}

.blob-head > h3 {
    color: var(--green);
    font-weight: 600;
    margin: 0 !important;
    font-size: 20px !important;
}

.blob-head > h4 {
    color: var(--dark-grey);
}

.blob-head > p {
    color: #777;
    font-size: 16px !important;
    margin: 20px 0;
    line-height: 1.4 !important;
}

.blob-body {
    background-color: #fafafa;
    padding: 20px 20px;
    color: var(--dark-grey) !important;
    border-top: 1px solid #eee;
    border-radius: 0 0 3px 3px;
}

.blob-body button {
    margin-bottom: 0;
}

/* ******** END BLOB ******** */

/* ******** BOXY RADIO ******** */
.box-radio {
    list-style-type: none;
    margin: 0 0 0 0;
    padding: 0;
    clear: both;
}

.box-radio li {
    text-align: center;
    float: left;
    margin: 0;
    width: 50px;
    height: 50px;
    color: var(--dark-grey);
}

.box-radio label, .box-radio input {
    display: block;
    background-color: #f5f5f5;
    font-family: Arial;
}

.box-radio input[type="radio"] {
    display: none;
}

.box-radio input[type="radio"]:checked + label, .Checked + label {
    background: rgb(85, 188, 117);
    color: white;
    border: 1px solid rgb(85, 188, 117);
    border-right: 0;
}

.box-radio label {
    padding: 5px;
    border: 1px solid #DDD;
    cursor: pointer;
    z-index: 90;
}

.box-radio label:hover {
    background-color: #ccc;
}

/* ******** END BOXY RADIO ******** */

/* ******** SERVICES PAGE ******** */
.service-container {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #f7f7f7;
}

/* ******** END SERVICES PAGE ******** */

/* ********************* FORM ********************** */
.form-container {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}

.form-body {
    background-color: white !important;
    padding-top: 20px;
    padding-bottom: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(213, 218, 223);
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.padder {
    margin-left: 30px;
    margin-right: 30px;
}

.greeting {
    text-align: right;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark-grey);
}

.welcome {
    margin-bottom: 20px;
}

.submit-container {
    text-align: right;
}

.form-footer {
    border-top: 1px;
    border-left: 1px;
    border-right: 1px;
    border-bottom: 1px;
    border-style: solid;
    border-color: rgb(213, 218, 223);
    background-color: rgb(249, 249, 249);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.inline {
    display: inline-flex;
    text-align: center;
}

/* ********************* END FORM ********************** */

/* ********* HERO ******** */
.hero {
    position: relative;
    height: calc(100% - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 6px solid rgba(85, 188, 117, .5);
    background-size: cover;
}

.hero-75 {
    height: calc(75%);
}

.hero-half {
    height: calc(50%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-size: cover;*/
    /*background-position: center center;*/
    /*filter: brightness(.5);*/
    background: rgba(0, 0, 0, 0.5);

}

.hero-content {
    position: relative;
    text-align: center;
    text-shadow: #333 1px 1px 5px;
    max-width: 100%;
}

.hero-content .container {
    position: relative;
}

.hero-main {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
}

.hero-mid {
    font-size: 2.5rem;
    color: #ddd;
}

.hero-sub {
    color: #ddd;
    font-weight: 600;
    font-size: 2rem;
}

.hero-btns {
    margin-top: 50px;
}

.hero-btn:hover {
    background-color: var(--green-secondary) !important;
    text-shadow: none;
    color: white !important;
}

.hero-btn {
    margin: 0 10px;
    background-color: var(--green);
    color: white;
    border: none;
    border-radius: 3px;
    padding: 15px 20px;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: none;
}

.green-tagline {
    color: var(--green);
}

/* ********************* END TAGLINE ********************** */

/* ********************* LOGIN FORM *********************** */
.login-container {
    max-width: 600px;
    margin: 5% auto 10% auto;
}

.login-body {
    background-color: white;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(213, 218, 223);
    padding-top: 20px;
    padding-bottom: 20px;
}

.padder {
    margin-left: 30px;
    margin-right: 30px;
}

.login-footer {
    background-color: rgb(249, 249, 249);
    border-bottom: 0;
    border-color: rgb(213, 218, 223);
    border-style: solid;
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top-width: 0;
}

/* ********************* BUTTONS ************************** */
.learn-more:hover {
    border-color: rgb(85, 188, 117) !important;
    background-color: rgb(85, 188, 117) !important;
    text-shadow: none;
    color: white !important;
}

.learn-more {
    margin: 20px 10px;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 3px;
    padding: 15px 30px;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: #333 1px 1px 5px;
}

.promo-green {
    background-color: rgb(24, 166, 104);
    border-color: rgb(24, 166, 104);
    text-shadow: none !important;
}

.promo-grey {
    background-color: #eee;
    border-color: #eee;
    color: #777;
    text-shadow: none !important;
}

.promo-grey:hover {
    background-color: #ddd !important;
    border-color: #ddd !important;
    color: #777 !important;
}

.promo-grey .promo-green {
    margin: 0 100px 20px 100px !important;
    text-shadow: none !important;
    font-weight: 600 !important;
}

.link-btn {
    background-color: inherit;
    color: #999;
    text-decoration: none !important;
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
}

.link-btn:hover {
    color: #aaa;
}

.outline-btn {
    background-color: inherit;
    color: #ccc !important;
    border-color: #ccc !important;
}

.outline-btn:hover {
    color: var(--dark-grey) !important;
    background-color: #ccc !important;
    border-color: #ccc !important;
}

.b-btn {
    background: none;
    border: 1px solid #ddd;
    color: #ddd;
    padding: 10px 20px;
    border-radius: 3px;
    margin-right: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}

.b-btn:disabled {
    color: #999 !important;
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.b-btn-small {
    padding: 5px 10px !important;
}

.b-btn-wide {
    width: 100%;
    margin-right: 0 !important;
}

.b-btn-half {
    padding-left: 80px;
    padding-right: 80px;
}

.b-btn-promo {
    border-color: var(--green);
    background-color: var(--green);
    color: #fff;
    padding: 10px 10%;
    font-size: 16px;
    width: 50%;
}

.b-btn-big, .hero-btn {
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 2px;
}

.b-btn-green:hover:enabled {
    background-color: var(--green-secondary);
    border-color: var(--green-secondary);
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.b-btn-medium {
    border-color: #999 !important;
    color: #999 !important;
}

.b-btn-medium:hover {
    background-color: #999;
    border-color: #999;
    color: white !important;;
}

.b-btn-black {
    border-color: #231F20 !important;
    color: #231F20 !important;
}

.b-btn-black:hover {
    background-color: #231F20 !important;
    border-color: #231F20;
    color: white !important;;
}

.btn-white {
    background: white;
    color: var(--green) !important;
    font-weight: bold;
}

button.btn-delete {
    color: red;
}

button.btn-delete:hover {
    color: white;
    background: red;
    border-color: red;
}

.btn-white:hover {
    background: #eee !important;
}

.b-btn-grey {
    border-color: #ccc;
    color: #ccc;
}

.b-btn-grey:hover:enabled {
    background-color: #ccc;
    border-color: #ccc;
    color: white;
}

.b-btn-white {
    border-color: #ccc;
    color: #ccc;
    background-color: #fff;
}

.b-btn-white:hover {
    background-color: #ccc !important;
    border-color: #ccc !important;
}

.b-btn-dark {
    border-color: #999;
    color: #999;
}

.b-btn-dark:hover:enabled {
    background-color: #999;
    border-color: #999;
    color: white;
}

.b-btn-red {
    color: #fe7e54;
    border-color: #fe7e54;
}

.b-btn-red:hover:enabled {
    color: white;
    background-color: #fe7e54;
    border-color: #fe7e54;
}

.b-btn-red-solid {
    background-color: #fe7e54;
    border-color: #fe7e54;
    color: #fff;
}

/* .b-btn-red-solid:hover:enabled {
	color: #fe7e54;
	background-color: #fff;
	border-color: #fe7e54;
} */
.b-btn-green {
    border-color: var(--green);
    color: var(--green);
}

.b-btn-green-solid, .hero-btn {
    border-color: var(--green);
    background-color: var(--green);
    color: #fff;
}

.b-btn-green-solid:hover:enabled, .b-btn-1:hover:enabled {
    border-color: var(--green-secondary);
    background-color: var(--green-secondary);
}

.b-btn-grey-solid {
    border-color: #aaa;
    background-color: #aaa;
    color: #fff;
}

/* .b-btn-grey-solid:hover:enabled {
	color: #aaa;
	background-color: #ccc;
	border-color: #ccc;
} */
.b-btn-blue {
    border-color: var(--blue);
    color: var(--blue);
}

.b-btn-blue:hover:enabled {
    background-color: var(--blue);
    border-color: var(--blue);
    color: white;
}

.b-btn-blue-solid {
    border-color: var(--blue);
    background-color: var(--blue);
    color: #fff;
}

.b-btn-green-solid:hover:enabled, .b-btn-blue-solid:hover:enabled,
.b-btn-grey-solid:hover:enabled, .b-btn-red-solid:hover:enabled {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.b-btn-1:hover:enabled {
    border-color: var(--green);
    color: var(--green);
    background-color: white;
}

.b-btn-1 {
    border-color: var(--green);
    background-color: var(--green);
    color: white;
}

.b-btn-2:hover:enabled {
    border-color: #0C7C59;
    color: #0C7C59;
    background-color: white;
}

.b-btn-2 {
    border-color: #0C7C59;
    background-color: #0C7C59;
    color: white;
}

.b-btn-3:hover:enabled {
    border-color: var(--blue);
    color: var(--blue);
    background-color: white;
}

.b-btn-3 {
    border-color: var(--blue) !important;
    background-color: var(--blue);
    color: white;
}

.btn-1:hover, .btn-2:hover, .btn-3:hover, .btn-4:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.btn-1 {
    border-color: rgb(85, 188, 117);
    background-color: rgb(85, 188, 117) !important;
    color: white;
}

.btn-2 {
    border-color: #1da39c !important;
    background-color: #1da39c !important;
    color: white;
}

.btn-3 {
    border-color: #1c6aa4 !important;
    background-color: #1c6aa4 !important;
    color: white;
}

.btn-4 {
    border-color: #3ca817 !important;
    background-color: #3ca817 !important;
    color: white;
}

.btn-5 {
    border-color: var(--dark-grey) !important;
    background-color: var(--dark-grey) !important;
    color: white;
}

.white-btn {
    background-color: white;
    color: var(--green-secondary) !important;
}

.white-btn:hover {
    color: white !important;
    background-color: var(--dark-grey);
}

.green-btn {
    background-color: var(--green);
    color: white;
}

.green-btn:hover {
    color: white !important;
    background-color: var(--dark-grey);
}


.red-btn {
    background-color: #fe7e54;
    color: white !important;
}

.red-btn:hover {
    background-color: #efefef;
    color: #ff2f2f !important;
}

.btn-round {
    border-radius: 100px;
}

.border-black {
    border-color: black !important;
}

.no-border {
    border: none !important;
}

.black {
    color: black;
}

.grey-btn {
    background-color: #e0e0e0 !important;
    color: var(--dark-grey);
}

.grey-btn:hover {
    background-color: var(--dark-grey) !important;
    color: #bbb !important;
}

.dark-grey-btn {
    background-color: #aaaaaa ! important;
    color: white;
}

.dark-grey-btn:hover {
    color: white !important;
    background-color: var(--dark-grey) !important;
}

.m {
    font-family: Open sans, sans-serif;
    font-style: normal;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 35px;
    text-transform: uppercase;
    color: #5C5C5C;
}

.upper {
    text-transform: uppercase;
}

.lower {
    text-transform: lowercase;
}

.btn {
    margin-right: 10px;
    margin-bottom: 5px !important;
    font-weight: 600 !important;
}

.btn-margin-lr {
    margin: 0 5px 0 5px;
}

.big-btn {
    height: 50px;
    min-width: 120px;
    font-size: 15px !important;
}

/* ********************* END BUTTONS ********************** */
.inb {
    height: 100%;
    width: 100% !important;
    border: 1px solid #eee !important;
    /* width: 350px; */
    text-align: center !important;
    background-color: white;
    padding: 0 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 1px 1px 1px #ddd;
    /* box-shadow: 1px 1px 20px 1px #ddd, 1px 1px 20px 1px #ddd; */
}

.inb-box {
    border: 1px solid #eee !important;
    background-color: white;
    border-radius: 5px;
    box-shadow: 1px 1px 1px #ddd;
}

.search-box {
    background-image: url('../assets/images/magnifying-glass.png') !important;
    background-position: 10px 10px !important;
    background-repeat: no-repeat !important;
    padding: 12px 20px 12px 40px !important;
}

.selected-link {
    color: white;
    background-color: var(--blue);
    padding: 5px 20px 8px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.selected-link:hover {
    background-color: #ccc;
}

.green {
    color: var(--green) !important;
}

.green2 {
    color: var(--green);
}

.white-green {
    color: white;
}

.white-green:hover {
    color: var(--green-secondary);
}

.message-box-padding {
    margin: 10px 20px 10px 20px;
}

.center {
    text-align: center !important;
}

.right {
    text-align: right;
}

.left {
    text-align: left !important;
}

.close {
    font-size: 4rem !important;
}

.modal-body, .modal-header, .modal-footer {
    padding: 0;
}

.modal, .modal-content {
    border-radius: 3px !important;
}

.modal-content {
    text-align: left !important;
    padding: 20px 30px 0 30px;
}

.modal-header {
    color: #18A668;
    border-radius: 5px !important;
    border-bottom: 1px solid #ddd;
    padding: 0;
}

.modal-header h2, .modal-header h3 {
    font-weight: 600;
}

.modal-body {
    padding: 20px 0;
}

.modal-body p, .modal-body ul {
    font-size: 18px;
    color: #777;
    padding: 10px 0;
}

.modal-footer {
    padding-top: 20px;
    text-align: right !important;
}

/* .modal, .modal-content {
	border-radius: 0 !important;
}

.modal-header {
	border-radius: 0 !important;
	border-top-right-radius: inherit !important;
	border-top-left-radius: inherit !important;
} */
.open-sans {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    /* font-size: 16px;
font-style: normal;
font-weight: normal;
letter-spacing: normal;
line-height: 24px;
text-transform: none; */
}

.bad-color {
    border-width: 2px;
    border-color: red;
}

.good-color {
    border-width: 2px;
    border-color: #8BC34A;
}

.new-sub {
    color: rgb(85, 188, 117) !important;
    cursor: pointer;
}

.underline {
    text-decoration: underline;
}

.dotted-under {
    border-bottom: 1px dotted;
}

/* ********************* CENTER VERT ********************** */
.mid {
    display: table-row;
    vertical-align: middle;
    height: 1px;
}

.center-vert-container {
    min-height: 100%;
    height: 100%;
    width: 100%;
    border-collapse: collapse;
    display: table;
}

/* *********************************** */
.box-container {
    min-height: 228px;
    width: 75%;
    margin: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 10px;
    margin-bottom: 30px;
}

.box-content {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

.box-footer {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 0;
}

.green-bg {
    background-color: var(--green) !important;
}

.white-bg {
    background-color: white;
}

.red-bg {
    background-color: var(--red);
}

.light-grey-bg {
    background-color: #fafafa !important;
}

.court-blue-bg {
    background-color: var(--blue);
}

.thirty-px {
    font-size: 30px;
}

.box-shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.box-shadow-bottom {
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2), 0 0 20px 0 rgba(0, 0, 0, 0.19);
}

.box-shadow2 {
    box-shadow: 2px 2px 20px #ddd;
    /* box-shadow: 1px 1px 20px 1px #ddd, 1px 1px 20px 1px #ddd; */
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
}


.box-shadow3 {
    box-shadow: 2px 2px 20px #ddd;
    /* box-shadow: 1px 1px 20px 1px #ddd, 1px 1px 20px 1px #ddd; */
}

.green-border {
    border-top: 4px solid #18A668 !important;
}

.green-border-color {
    border-color: rgb(85, 188, 117) !important;
}

.green2-border-color {
    border-color: var(--green) !important;
}

.red-border {
    border-top: 4px solid var(--red) !important;
}

.red-border-color {
    border-color: var(--red) !important;
}

.grey-border-top {
    border-top: 4px solid #999;
}

.black-border-top {
    border-top: 4px solid #ddd;
}

.blue-border-top {
    border-top: 4px solid var(--blue) !important;
}

.light-blue-border-top {
    border-top: 4px solid #DAEDF7 !important;
}

.grey-block {
    background-color: #fafafa;
    padding: 20px 20px 20px 20px;
    border-radius: 2px;
    margin-bottom: 20px;
    border: 2px solid #efefef;
}

.white-block {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 2px;
}

.form-border {
    border: 1px solid #efefef;
    /* border-radius: 10px; */
    padding: 20px 30px 20px 30px;
    margin-bottom: 20px;
}

.form-padding {
    padding: 20px 30px 20px 30px;
}

.block {
    border-top: 5px solid #ddd;
    margin-bottom: 50px;
}

.block-head {
    background-color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 300;
}

.block-body {
    background-color: #f3f3f3;
    padding: 30px 20px;
    color: var(--dark-grey);
}

a:hover {
    cursor: pointer;
    text-decoration: none !important;
}

/* DAY PICKER */
.check-cont input[type=checkbox] {
    display: none;
}

.check-cont input[type=checkbox]:checked + span {
    color: var(--green);
    background-color: #D5EEE3;
    font-weight: 600;
}

.check-cont {
    border: 2px solid #ddd;
    font-size: 14px;
    padding: 5px 0;
    background-color: #f9f9f9;
    border-radius: 5px;
    color: #999;
}

.check-cont input[type=checkbox] + span {
    border-right: 2px solid #ddd;
    padding: 5px 12px;
}

.check-cont .outer-r {
    border-right-width: 0 !important;
}

/* END DAY PICKER */

/* COLORS */
.white {
    color: white !important;
}

.dark-grey {
    color: var(--dark-grey);
}

.grey1 {
    color: #656565;
}

.grey2 {
    color: #585E70;
}

.court-blue {
    color: var(--blue);
}

.medium-grey {
    color: #777777;
}

.light-grey {
    color: #aaa;
}

.red {
    color: #F00;
}

.red2 {
    color: #fe7e54 !important;
}

.red-bold {
    font-weight: 600;
    color: #F00;
}

.red-hover:hover {
    color: #F00 !important;
    cursor: pointer !important;
}

.green-hover:hover {
    color: var(--green-secondary) !important;
    cursor: pointer !important;
}

/******* PRIVATE LESSONS */
.lesson-student-group {
    /* padding: 0 10px 10px 10px; */
    /* background-color: #efefef; */
    border-radius: 0;
    padding-bottom: 10px;
    margin: 10px 0 10px 0;
}

.lesson-header {
    background-color: rgb(85, 188, 117);
    padding: 10px 10px 10px 10px;
    font-size: 2em;
}

.lesson-body {
    margin: 10px 10px 10px 10px;
    padding-bottom: 10px;
}

.lesson-panel {
    margin-bottom: 5px !important;
}

/* ********** TESTIMONIALS ************* */
.testimonial {
    background-color: rgb(249, 249, 249);
    border-color: var(--green) !important;
    border-left: solid;
    border-width: 7px;
    margin-bottom: 25px;
    padding: 30px 35px 20px 35px;
}

/************ TEXT FORMAT ***************/
.italic {
    font-style: italic;
}

.f12 {
    font-size: 12px !important;
}

.f14 {
    font-size: 14px !important;
}

.f16 {
    font-size: 16px !important;
}

.f18 {
    font-size: 18px !important;
}

.f20 {
    font-size: 20px !important;
}

.f24 {
    font-size: 24px !important;
}

.f48 {
    font-size: 48px !important;
}

.eight-hundred {
    font-weight: 800;
}

.seven-hundred {
    font-weight: 700;
}

.six-hundred {
    font-weight: 600 !important;
}

.four-hundred {
    font-weight: 400;
}

.three-hundred {
    font-weight: 300;
}

/************** SPACING *************/
.no-pad-left {
    padding-left: 0 !important;
}

.no-padding {
    padding: 0 0 0 0 !important;
}

.no-margin {
    margin: 0 0 0 0 !important;
}

.margin-bottom {
    margin-bottom: 10px !important;
}

.ten-side-pad {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/************** BORDERS ****************/
.grey-border {
    border: 1px solid #999999;
}

/************RESET*************/
label {
    font-weight: normal !important;
}

/********HOVER***************/
.grey-hover:hover {
    color: var(--dark-grey) !important;
}

.light-grey-hover:hover {
    color: #ccc !important;
    cursor: pointer;
}

/***********CURSOR************/
.pointer {
    cursor: pointer;
}

/***********ICONSZ**************/
.lesson-counter {
    margin-left: 10px;
    font-size: 12px;
    display: inline-block;
    background-color: rgb(232, 30, 30);
    width: 17px !important;
    border-radius: 17px;
    color: white;
}

/***********MODAL Z-INDEX***********/
.modal {
    z-index: 20 !important;
}

.modal-backdrop {
    z-index: 19 !important;
}

/*********** INFO BLOCK ********/
.info-box {
    background-color: white;
    border: 2px solid #eee;
    border-radius: 3px;
    padding: 40px;
    margin-bottom: 20px;
}

.info-box:hover {
    border-color: #18A668;
}

.bub {
    height: 76px;
    width: 76px;
    background-color: rgb(85, 188, 117);
    border-radius: 1000px;
}

.bub-img {
    margin: 8px 0 0 8px;
    height: 60px;
    width: 60px;
}

.bub2 {
    background-color: rgb(85, 188, 117);
    border-radius: 1000px;
    padding: 20px;
}

.info-block:hover {
    border: 6px solid #18A668CC;
    border-radius: 10px;
    cursor: pointer;
}

.selected-info {
    border: 6px solid #18A668CC !important;
    border-radius: 10px;
    cursor: pointer;
}

.info-block:checked {
    border: 6px solid #18A66850;
    border-radius: 10px;
    cursor: pointer;
}

.info-block {
    background-color: inherit;
    text-align: center;
    margin: 10px 10px 20px 10px;
    color: var(--dark-grey);
    border-width: 6px;
    border-style: solid;
    border-color: transparent;
}

.info-block-heading {
    font-size: 20px;
    background-color: #18A668;
    padding: 10px 0 10px 0;
    color: white;
}

.info-block-body {
    border: 1px solid #dddddd;
    border-top-color: rgba(0, 0, 0, 0);
    padding: 0 10px;
    color: var(--dark-grey);
    background-color: white;
}

/***** COACHES *****/
.oxford-comma-list span:after {
    content: ",";
}

.oxford-comma-list span:first-child:after,
.oxford-comma-list span:last-child:after {
    content: "";
}

.modal-dialog {
    top: 50px;
}

.modal-top {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.modal-bottom {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.form-control {
    margin-bottom: 10px;
}

.hidden {
    display: none;
}

.coach-block {
    width: 200px;
    display: inline-block !important;
}

.coach-block img {
    width: inherit;
    border-radius: 20px;
}

.border-bottom-dot {
    border-bottom: 1px dotted #999;
}

.trash:hover {
    cursor: pointer;
    font-weight: bold;
    color: red;
}

.button-clear {
    background-color: inherit;
    border: none;
}

.glyph-button2 {
    color: #aaa;
    /* background-color: #eee; */
    border-radius: 20px;
    height: 80%;
    text-align: center;
    padding: 0;
    margin: 0 0 0 8px;
}

.glyph-button2 .oi {
    /* font-size: 10px !important; */
    position: relative;
    /* top: -6px; */
    font-weight: 600;
    font-size: 70%;
    transform: translateY(-50%);
}

.glyph-button {
    color: #aaa;
    background-color: #eee;
    border-radius: 20px;
    height: 18px;
    width: 18px;
    text-align: center;
}

.glyph-button .oi {
    font-size: 10px !important;
    position: relative;
    top: -6px;
    font-weight: 600;
}

.glyph-button:hover {
    color: #ddd;
}

.hidden {
    display: none;
}

.bubble-container img {
    margin-top: 20px;
}

.bubble-container {
    text-align: center;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    width: 104px;
    height: 104px;
    border-radius: 1000px;
    margin: 0 auto;
    cursor: pointer;
}

.bubble-color-1 {
    border: 2px solid var(--green);
    background-color: var(--green);
}

.bubble-color-1:hover {
    background-color: #96E8BC;
    border-color: #eee;
}

.bubble-color-2 {
    border: 2px solid var(--blue);
    background-color: var(--blue);
}

.bubble-color-2:hover {
    background-color: #7899BA;
    border-color: #eee;
}

.bubble-color-3 {
    border: 2px solid #CED3DC;
    background-color: #CED3DC;
}

.bubble-color-3:hover {
    background-color: #DBDFE5;
    border-color: #eee;
}

.bubble-color-4 {
    border: 2px solid #84A6B7;
    background-color: #84A6B7;
}

.bubble-color-4:hover {
    background-color: #DBDFE5;
    border-color: #eee;
}

.bubble-color-5 {
    border: 2px solid #0C7C59;
    background-color: #0C7C59;
}

.bubble-color-5:hover {
    background-color: #4E9F86;
    border-color: #eee;
}

.div-center {
    margin: 0 auto !important;
}

.paddica {
    padding: 0 10px;
    color: #777;
    /* font-weight: 600; */
}

.shadow-bottom {
    -webkit-box-shadow: 0 2px 2px #cccccc;
    -moz-box-shadow: 0 2px 2px #cccccc;
    box-shadow: 0 2px 2px #cccccc;
}

.but {
    background-color: inherit;
    border: 2px solid #ddd !important;
    padding: 10px 10%;
    width: 50%;
    color: #bbb;
    text-align: center;
}

.but:hover {
    color: white;
    /* background-color: #96E8BC; */
    background-color: rgba(85, 188, 117, .8);
    border-color: rgba(0, 0, 0, 0) !important;
    font-weight: 500;
}

.content p {
    font-size: 18px;
    color: #777;
    line-height: 1.6;
    margin: 20px 0;
}

.content-panel {
    padding: 40px 0 50px 0;
    text-align: center;
}

.content-panel p {
    font-size: 20px;
    color: #777;
    margin: 20px 0;
}

.content-panel ul {
    text-align: center;
    list-style-position: inside;
    font-size: 20px;
    color: #777;
}

.content-panel-title {
    color: var(--dark-grey);
    text-align: center;
    margin-bottom: 80px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

/* .content-panel-tag {
	font-size: 20px;
	margin-bottom: 50px;
	text-align: center;
	} */

/* 
.modal-top {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.modal-bottom {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
} */
.form-control {
    margin-bottom: 10px;
}

.light-green {
    color: #96E8BC;
}

.table-responsive {
    max-height: 80vh !important;
    overflow-y: auto !important;
}

table {
    font-size: 16px;
}

tbody tbody {
    border: none !important;
}

.grey-table {
    background-color: white !important;
}

.grey-table th {
    background-color: var(--dark-grey);
    color: white;
    border-bottom: 0 !important;
    font-weight: 600;
}

.grey-table thead {
    border: 1px solid var(--dark-grey);
}

.grey-table tbody {
    border: 1px solid #ddd;
    border-top: 1px solid #eeeeee;
}

.light-grey-table {
    background-color: white !important;
    color: var(--dark-grey);
}

.light-grey-table th {
    background-color: #EEEEEE;
    color: #777777;
    border-bottom: 0 !important;
    /* color: red; */
    font-weight: 600;
}

.light-grey-table thead {
    border: 1px solid #ddd;
}

.light-grey-table tbody {
    border: 1px solid #ddd;
}

.vector-img {
    height: 64px;
    width: 64px;
}

.vect {
    height: 80px;
    width: auto;
}

/************ LEFT NAV ***************/
.left-nav-link {
    padding: 15px 20px;
    font-size: 15px;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    color: var(--dark-grey);
}

.left-nav-link:hover {
    background-color: var(--dark-grey);
    color: rgb(85, 188, 117);
    cursor: pointer;
}

.left-nav {
    position: fixed;
    width: 140px;
    border-radius: 0;
    height: 100% !important;
    background-color: #efefef !important;
    border: 0 !important;
}

.left-nav-selected {
    background-color: #ddd;
    color: rgb(85, 188, 117);
}

.labe {
    font-weight: 600 !important;
    color: var(--dark-grey) !important;
}

#filterBox {
    position: sticky !important;
    top: 67px;

}

.fixed {
    position: fixed;
}

@media (max-width: 768px) {
    #filterBox {
        position: relative !important;
        top: 0 !important;
    }
}

/************** DATA TABLES ****************/
table thead tr th {
    font-weight: 600 !important;
}

.thead-light th {
    background-color: #E9ECEF;
    color: #495057;
}

table .email-td {
    max-width: 200px;
    word-wrap: break-word;
}

/* #table tbody, .datatable tbody, tbody, .datatable, #table {
	border: 1px solid #ddd !important;
}

.paginate_disabled_previous {
	margin-right: 10px;
	font-weight: 600;
	color: rgb(85, 188, 117);
}

.paginate_disabled_next {
	font-weight: 600;
	color: rgb(85, 188, 117);
}

.dataTables_info {
	font-style: italic;
	color: #777;
}
 */
.back-link {
    color: var(--green-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 10px !important;
}

.back-link a {
    color: #18A668;
}

.but-inv {
    border: 2px solid rgba(0, 0, 0, 0) !important;
    padding: 10px 10%;
    width: 50%;
    text-align: center;
    color: white;
    /* background-color: #96E8BC; */
    background-color: rgb(85, 188, 117);
    border-color: rgba(0, 0, 0, 0) !important;
}

.but-inv:hover {
    background-color: rgba(85, 188, 117, .5);
    border: 2px solid rgba(85, 188, 117, .3) !important;
}

.secondary-nav {
    position: fixed;
    width: 100%;
    background-color: var(--green);
    color: white;
    font-family: Open sans;
    font-weight: 600;
    padding: 12px 0;
    margin-bottom: 10px;
    z-index: 1;
    height: 40px;
}

.secondary-nav a {
    color: white;
    font-size: 12px;
}

.secondary-nav a:hover {
    color: var(--dark-grey);
}

.secondary-nav-item {
    padding: 0 10px;
    display: inline-block;
    border-right: 1px solid white;
}

.secondary-nav-title {
    float: right;
    font-size: 10px;
    margin-top: 5px;
    font-weight: 300;
}

.nav-tabs {
    border: none;
    color: white;
    margin-bottom: 10px;
}

.nav-tabs a {
    font-size: 1.3em;
    color: var(--green);
}

.nav-tabs a.active {
    border-bottom: var(--green) 3px solid;
    border-radius: 0;
    font-weight: bold;
}

.nav-tabs a:hover {
    color: var(--green);
}

.nav-tabs a.active:hover {
    border-bottom: var(--green-secondary) 2px solid;
}

/* ********* TOURNAMENT *********** */
.bracket {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    width: 350px;
}

.team {
    padding-left: 20px;
}

/* ******INVITES **********/
.invitation {
    padding: 10px 30px 30px 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-left: 7px solid rgb(85, 188, 117);
    margin-bottom: 30px;
    border-radius: 0 3px 3px 0;
}

.ta-toolbar {
    background-color: #eee;
    padding: 10px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.ta-toolbar .btn {
    background-color: white;
    border-radius: 0;
    margin: 0 !important;
}

.btn-group {
    margin-bottom: 2px;
}

.form-label {
    font-weight: 600;
}

.input-label {
    color: #999;
    font-size: 13px;
}

.tick {
    max-width: 50px;
    border-bottom: 4px solid #ddd;
    border-radius: 4px;
    margin: 20px 0;
}

/* ***** DROPDOWNS ***** */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #eee;
    min-width: 225px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: var(--dark-grey);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid white;
}

.dropdown-content a:hover {
    background-color: var(--dark-grey);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: rgb(85, 188, 117);
}

/* ***** END DROPDOWNS ***** */

/* ***** LOADER ***** */
.loader-container, #loader-container {
    height: 100%;
    width: 100%;
    background-color: rgba(50, 50, 50, .6);
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
}

.loader, #loader {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 100;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid var(--green);
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ***** END LOADER ***** */

/* ***** TOOLTIP ***** */
.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip-wrapper .tooltip-text {
    visibility: hidden;
    background-color: var(--dark-grey);
    color: #fff;
    text-align: center;
    padding: 5px 12px;
    border-radius: 6px;
    width: max-content;

    position: absolute;
    z-index: 1;

    bottom: 110%;
    left: 40%;
    margin-left: -60px;

    max-width: 400px;
}

.tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
}

/* ***** END TOOLTIP ***** */

/* ******** SLIDER ******* */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--green);
}

input:checked + .slider-red {
    background-color: #fe7e54;
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--green);
}

input:checked + .slider-red {
    box-shadow: 0 0 1px #fe7e54;
}

input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

.slider-label {
    font-size: 18px;
    padding-top: 80px !important;
    color: #999;
    position: relative;
    top: 14px;
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* ***** END SLIDER ****** */
.bread-crumb {
    margin: 0 0 10px 0;
    /* background-color: #fff; */
    /* padding: 8px; */
    border-radius: 5px;
}

.crumb-item {
    font-size: 14px;
    margin-right: 5px;
    color: #aaa;
}

.crumb-sel {
    font-weight: 500;
    color: var(--green) !important;
}

.crumb {
    margin: 10px 0 20px 0;
    background-color: #f5f5f5;
    padding: 8px;
    border-radius: 5px;
    background-color: #eee;
    width: fit-content;
}

.crumb a {
    color: var(--green);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.faq div, .faq ul {
    font-size: 18px;
    color: #777;
}

.faq {
    line-height: 1.6;
}

trix-editor, .ql-editor {
    background-color: white;
}

trix-toolbar {
    min-width: 0 !important;
}

.sub-title {
    color: #aaa;
    font-size: 16px;
    font-weight: 400;
}

.title {
    /* margin-top: 0; */
    font-weight: 700;
    color: var(--dark-grey);
}

.copy {
    margin-left: 10px;
    color: #aaa;
}

/* ******** PROFILE BUTTONS ******** */
.profile .col-md-3 .b-btn {
    color: #999;
    border-color: #ccc;
    width: 100%;
    text-align: left !important;
    border-width: 1px !important;
    font-weight: 600 !important;
    background-color: #f5f5f5;
    text-transform: uppercase;
}

.profile div[class^='row-'] {
    /* .profile .row-1, .profile .row-2, .profile .row-3, .profile .row-4, .profile .row-5 { */
    margin-bottom: 30px;
    margin-top: 20px;
    padding-top: 0;
    border-top: 1px solid #eee;
}

.profile div[class^='row-'] h3 {
    /* .profile .row-1 h3, .profile .row-2 h3, .profile .row-3 h3, .profile .row-4 h3 { */
    font-weight: 700;
    margin-bottom: 20px;
}

.profile .row-1 h3, .profile .row-1 i[class^='fa'] {
    color: #09BC8A;
}

.profile .row-2 h3, .profile .row-2 i[class^='fa'] {
    color: #5B9F91 !important;
}

.profile .row-3 h3, .profile .row-3 i[class^='fa'] {
    color: var(--blue);
}

.profile .row-4 h3, .profile .row-4 i[class^='fa'] {
    color: #41658A;
}

.profile .row-5 h3, .profile .row-5 i[class^='fa'] {
    color: #90BAAD;
}

.profile button i[class^='fa'] {
    font-size: 24px !important;
    margin-right: 10px;
}

.profile .row-1 .b-btn:hover {
    color: white;
    background-color: #09BC8A;
    border-color: #09BC8A;
}

.profile .row-2 .b-btn:hover {
    color: white;
    background-color: #5B9F91;
    border-color: #5B9F91;
}

.profile .row-3 .b-btn:hover {
    color: white;
    background-color: var(--blue);
    border-color: var(--blue);
}

.profile .row-4 .b-btn:hover {
    color: white;
    background-color: #41658A;
    border-color: #41658A;
}

.profile .row-5 .b-btn:hover {
    color: white;
    background-color: #90BAAD;
    border-color: #90BAAD;
}

.profile .b-btn:hover i[class^='fa'] {
    color: white !important;
}

/* ******** END PROFILE BUTTONS ******** */
.status {
    padding: 2px 15px;
    font-size: 12px;
    color: white;
    border-radius: 16px;
    white-space: nowrap;
}

.status .glyphicon {
    margin-right: 5px;
}

.loader2 {
    border: 3px solid #ccc;
    border-radius: 50%;
    border-top: 3px solid #3498db;
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: 2px;
    -webkit-animation: spins 2s linear infinite; /* Safari */
    animation: spins 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spins {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spins {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.rowy {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    align-items: baseline;
}

.rowy .column {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    flex-grow: 1 !important;
    max-width: 25%;
    min-width: 250px !important;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: 1px 1px 1px #ddd;
    margin: 10px 20px 10px 0;
    padding: 20px;
    text-align: center;
}

.rowy .column img {
    align-self: center;
    max-height: 60px !important;
    width: auto !important;
    margin-bottom: 20px;
}

@media ( max-width: 580px) {
    .rowy .column {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
}

.grower {
    margin-bottom: auto;
}

.popover {
    width: 100% !important;
    max-width: 350px;
}

.fab-btn {
    position: fixed;
    bottom: 10px;
    z-index: 100;
    right: 20px;
    border-radius: 50px;
    font-size: 32px;
    padding: 15px !important;
    height: 62px;
    width: 62px;
    background-color: var(--green);
    text-align: center;
    color: white;
    box-shadow: 3px 10px 18px #333;
}

.fab-btn:hover {
    cursor: pointer;
    background-color: #57BE91;
}

.modal, .modal-dialog, .modal-backdrop {
    z-index: 2000 !important;
}

.modal-backdrop {
    z-index: 1999 !important;
}

.marg {
    margin-left: 25px;
}

/* CARD */
.card {
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: white;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.card .card-header {
    /* border-bottom: 1px solid #ddd; */
    padding: 20px 20px 0 20px;
    color: var(--dark-grey);
}

.card-header h3 {
    margin-top: 0;
}

.card-title {
    font-weight: 600;
    padding: 10px 0;
}

.card-subtitle {
    font-weight: 400;
    color: #999;
}

.card-body {
    padding: 20px 20px;
}

.card-footer {
    /* border-top: 1px solid #ddd; */
    padding: 10px 20px;
}

/* END CARD */

/* SHADOW CARD */
.sh-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 2px 2px 8px #dedede;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.button-container {
    text-align: center;
    margin: 40px 0 0 0;
}

.button-container button {
    border-radius: 30px;
    margin: 0;
}

/* END SHADOW CARD */
.sidebar-logo {
    height: 30px;
    width: auto;
}

.why-tennisbloc {
    color: white;
    text-align: center;
    background-color: var(--green);
}

.members-banner {
    color: white;
    background-color: #18A668;
    text-transform: uppercase;
    padding: 12px 15px;
    border-radius: 2px 2px 0 0;
}

.no-top {
    border-top-width: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.program-header h2 {
    color: #18A668;
    font-weight: 600;
}

.program-header h4 {
    color: #777;
    font-weight: 600;
}

.program-footer {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 15px;
    color: #555;
}

.program-footer h3 {
    margin-top: 0;
}

.props h4 {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 600;
    height: 45px;
}

.props p {
    line-height: 1.6;
    font-size: 18px !important;
}

.why-tennisbloc p {
    color: white;
}

.why-tennisbloc .content-panel-title, .why-tennisbloc h4, .why-tennisbloc h2 {
    color: var(--green);
}

.why-tennisbloc .content-panel-title, .why-tennisbloc h4 {
    color: #ABDEC8;
    height: 45px;
}

.props .vect img {
    height: 80px;
    width: auto;
}

.service-props .vect img, .impact-props .vect img {
    height: 60px;
    width: auto;
    margin-top: 10px;
}

#high-five {
    width: 120px;
    height: 120px;
}

.props .vect {
    margin: 0 auto;
    border-radius: 60px;
    border: 3px solid #C0E6D5;
    padding: 20px;
    width: 120px;
    height: 120px;
    background-color: white;
}

.service-props .vect {
    border: 2px solid var(--green);
}

.props .vect .incl {
    margin-top: -10px;
    margin-left: -3px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 100px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #B3B3B3;
    border-radius: 100px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ccc;
    cursor: pointer;

}

/* **** Wizard controls **** */
.status-container .row {
    background-color: #DFE3E8;
    max-width: 100%;
    color: #999999;
    border-radius: 20px;
    text-align: center;
    margin: 20px auto;
}

.status-container .col-xs-4 {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.progress-start {
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
}

.step {
    border-radius: 20px;
    padding: 3px 0;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.step:hover {
    background-color: #555555;
    cursor: pointer;
}

.dis {
    font-style: italic;
}

.dis:hover {
    cursor: not-allowed;
    background-color: inherit;
}

.round-right {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.progress-fill {
    background-color: rgb(74, 144, 226);
    color: #ffffff;
    font-weight: 600;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.readable {
    font-size: 16px;
}

.about-our-camps h4 {
    height: 38px;
    padding: 8px;
}

.impact-props .flex-row {
    align-items: center;
}

.impact-props .flex-row .impact-right {
    justify-content: flex-end;
}

.impact-props .flex-row > * {
    flex: unset;
    margin: 20px;
}

@media (max-width: 769px) {
    .impact-props .flex-row {
        flex-direction: column;
    }

    .impact-props .flex-row.impact-right {
        flex-direction: column-reverse;
    }

    .impact-props * {
        text-align: center !important;
    }
}

.flex-row {
    display: inline-flex;
    width: 100%;
}

.flex-row > * {
    flex: 1;
    margin: 0 10px;
}

.flex-row > .btn {
    flex: 0;
}

.create-value {
    color: white;
}

.create-value p {
    line-height: 37px;
    font-size: 16px;
}

.pills a {
    color: var(--green);
}

.pills .active, .pills .active a {
    background-color: var(--green) !important;
    font-weight: 600;
    color: white;
    border-radius: 3px !important;
}

.hero-btn {
    margin: 20px 10px;
    font-size: 20px;
    font-weight: 700;
    text-shadow: none;
}

.content-table {
    border-collapse: collapse;
    margin: 0 0 25px 0;
    /* min-width: 400px; */
    width: 90%;
    border-radius: 3px 3px 3px 3px;
    overflow: hidden;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); */
}

.content-table thead tr {
    background-color: var(--green);
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.content-table th,
.content-table td {
    padding: 12px 15px;
}

.content-table tbody tr {
    border-bottom: 1px solid #dddddd;
    border-left: 2px solid #dddddd;
    border-right: 2px solid #dddddd !important;
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
    border-bottom: 2px solid #dddddd; /* var(--green); */
}

.content-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

.content-table.full {
    max-width: 90%;
    box-shadow: none;
    border-right: 1px solid #dddddd;
}

.content-table.full tbody tr {
    border-right: 3px solid #dddddd;
}

.table .no-borders, .table .no-borders td {
    border-width: 0 !important;
    background-color: inherit !important;

    margin-bottom: 0;
}

.table .no-borders tr {
    border-left-width: 0 !important;
    border-right-width: 0 !important;
    background-color: inherit !important;
}

.table .no-borders tr:last-of-type {
    border-bottom-width: 0 !important;
}

.table .no-borders tr:first-of-type, .table .no-borders tr:first-of-type td {
    padding-top: 0 !important;
}

/* Test for robots */
.favorite-color {
    color: rgba(0, 0, 0, 0) !important;
    border-width: 0px !important;
    border-color: rgba(0, 0, 0, 0) !important;
    background: rgba(0, 0, 0, 0) !important;
    background-color: rgba(0, 0, 0, 0) !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.grecaptcha-badge {
    z-index: 99999;
    display: block !important;
}

.message {
    margin-bottom: 10px;
}

.message-name {
    padding: 2px 8px;
    font-size: 1rem;
}

.message-timestamp {
    padding: 2px 8px;
    color: #999;
    font-size: .9rem;
}

.message-bubble {
    border-radius: 20px;
    padding: 8px 20px;
}

.sent-message {
    margin-left: 50%;
}

.sent-message .message-timestamp, .sent-message .message-name {
    text-align: right !important;
}

.sent-message .message-bubble {
    background-color: var(--green);
    color: white;
}

.received-message {
    margin-right: 50%;
}

.received-message .message-bubble {
    background-color: #efefef;
    color: #333;
}

/* ***** SNACKBAR ***** */
#snackbar {
    font-family: "Open Sans";
    visibility: hidden;
    min-width: 250px;
    padding: 16px 32px;
    margin-left: -125px;
    background-color: white;
    color: var(--green);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-bottom: 6px solid var(--green);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.4rem !important;
    text-align: center;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

/* ***** END SNACKBAR ***** */

/* EXPANDABLE CARD */
.panel-heading.expandable.flex {
    display: flex;
    justify-content: space-between;
}

.panel-heading.expandable:hover {
    cursor: pointer
}

.panel-heading.expandable.collapsed .chevron::before {
    display: block;
    transform: rotate(-90deg);
}

.panel-heading.expandable .chevron {
    margin-top: 4px;
}

/* END EXPANDABLE CARD */


/* PAGED */
.pager li.active a {
    background-color: var(--green) !important;
    color: white !important;
    border-color: var(--green) !important;
}

.pager a {
    color: var(--green) !important;
}

/* END PAGED */


/* PROGRESS BAR */
.loading-bar {
    height: 4px;
    background-color: rgba(5, 114, 206, 0.2);
    width: 100%;
    overflow: hidden;
}

.loading-bar-value {
    width: 100%;
    height: 100%;
    background-color: var(--green);
    animation: indeterminateAnimation 1s infinite linear;
    transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
    0% {
        transform: translateX(0) scaleX(0);
    }
    40% {
        transform: translateX(0) scaleX(0.4);
    }
    100% {
        transform: translateX(100%) scaleX(0.5);
    }
}

/* END PROGRESS BAR */