/***************header*****************/

div, ul, a, li, span {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
.line_btns ul {
    margin-bottom: 0;
}
.main_header {
    background-color: #FFF;
    padding: 40px 0;
    font-family: 'Roboto', sans-serif;
}

.header_block {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header_block > div {
    flex: auto;
}

.header_right_block {
    display: flex;
    align-items: center;
    flex-flow: row-reverse;
}

.logo img {
    max-width: 173px;
}

.get_verified_btn {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.get_verified_btn .btn_verified {
    background-color: #00bb3a;
    padding: 14px 25px;
    text-transform: uppercase;
    color: #FFF;
    border: 1px solid #00bb3a;
    text-decoration: none;
    display: flex;
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
}

.get_verified_btn .btn_verified:hover {
    color: #00bb3a;
    background-color: #FFF;
    border: 1px solid #00bb3a;
}

.get_verified_btn .btn_verified:hover .fa-check-circle {
    color: #00bb3a !important;
    /*background-color: #FFF;*/
}

.fa-check-circle:hover {
    color: #00bb3a !important;
}

.fa-check-circle:focus {
    color: #FFF !important;
}

.get_verified_btn .btn_verified:focus .fa-check-circle {
    color: #FFF !important;
}

.get_verified_btn .btn_verified:focus {
    color: #FFF !important;
}

.user_block {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: flex-end;
    gap: 15px;
}

.user_block .icon img {
    max-width: 25px;
    height: auto;
}

.icon.user_info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    text-align: left;
    align-items: center;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
}

.user_acting a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.user_acting a span {
    color: #737373;
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
}

.user_acting a span.post {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.icon.user_info img {
    max-width: 50px;
    border-radius: 50px;
}

.icon.user_info .media-object {
    width: 50px;
    border-radius: 50%;
    height: 50px;
    max-width: 50px;
    object-position: center top !important;
}

.user_block .icon .ud_arrow img {
    width: 27px;
}
/**list menu***/
.menu_bar {
    display: none;
}

.line_menu_container {
    background-color: #57c0f5;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
}

.line_menu_container .page_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.line_menu_container .page_wrapper > div {
    flex: auto;
    align-items: center;
}

.line_menu_list .submenu {
    display: none;
    z-index: 22;
}

.line_menu_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.line_menu_list ul li {
    position: relative;
    margin: 0;
    padding: 0 15px 0 15px;
    display: inline-block;
}

.line_menu_list ul li.last {
    margin-right: 0;
}

.line_menu_list ul li a {
    color: #FFF;
    padding: 20px 0;
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    line-height: normal;
    text-decoration: none;
    text-transform: uppercase;
}

.line_menu_list ul li a i {
    margin-left: 5px;
    position: relative;
    vertical-align: text-top;
}

.line_menu_list ul li a:hover,
        .line_menu_list ul li a.active {
    color: #000;
}

.line_menu_list ul li:hover .submenu {
    display: block;
    position: absolute;
    text-align: left;
    right: 0;
    left: 0;
    top: 54px;
    background: white;
    margin: auto;
    padding: 0;
    width: max-content;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.2);
}

.line_menu_list ul.submenu li {
    display: block;
    margin: 0;
    padding: 0;
}

.line_menu_list ul.submenu li a {
    color: #737373;
    display: block;
    padding: 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.line_menu_list ul.submenu li a:hover {
    background-color: #f5f5f5;
}

.line_btns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-end;
}

.line_btns a {
    font-size: 16px;
    font-weight: 700;
    background-color: #FFF;
    padding: 17px 20px !important;
    text-transform: uppercase;
    color: #57c0f5;
    border: 1px solid #FFF;
    text-decoration: none;
    position: relative;
    box-shadow: 0px 2px 4px 0px #00000040;
    /*display: block;*/
}

.line_btns a:hover {
    background-color: #f5f5f5;
    color: #737373;
    border: 1px solid #FFF;
}

.line_btns a:hover img {
    filter: grayscale(100%) !important;
}

.line_btns a img {
    margin-left: 5px;
}

.dropdown-sub-menu {
    display: none;
    position: absolute;
    top: 34px;
    right: 0;
    z-index: 999;
}

.line_btns ul li:hover .dropdown-sub-menu {
    display: block;
    text-align: left;
    background: white;
    margin: auto;
    padding: 0;
    width: max-content;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.2);
}

.line_btns ul li {
    position: relative;
    display: inline-block;
}

.line_btns > ul > li {
    position: relative;
    display: inline-block;
    margin: 0;
    /* padding: 20px 0px; */
}

.line_btns ul li.dropdown-sub-menu li {
    display: block;git
    margin: 0;
    padding: 0;
}

.dropdown-sub-menu li {
    width: 160px;
}

.dropdown-sub-menu li a {
    color: #737373;
    display: block;
    padding: 10px !important;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100% !important;
}

.line_btns ul li .dropdown-sub-menu li {
    display: block;
}

.line_btns ul li.dropdown-sub-menu li a:hover {
    background-color: #f5f5f5;
}

         /********************************footer**********************************************/
.main_footer {
    background-color: #000;
    padding: 40px 0;
    font-family: 'Roboto', sans-serif;
}

.footer_row1 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 25px;
}

.footer_logo img {
    max-width: 148px;
    width: 100%;
}

.footer_row1 > div {
    flex: auto;
}

.footer_links {
    justify-content: flex-end;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 30px;
}

.links_block h3 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.links_block > a {
    text-decoration: none;
}

.links_block ul li {
    list-style: none;
}

.links_block ul li a {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 10px;
    text-decoration: none;
    display: block;
}

.footer_row2 {
    border-top: 1px solid #FFF;
    max-width: 1000px;
    width: 100%;
    margin: 30px auto 0;
    padding: 25px 0 0 0;
}

.footer_row2 p {
    font-size: 12px;
    font-weight: 400;
    color: #FFF;
    margin: 0;
    text-align: center;
}


.main_container {
    background-color: #f5f5f5;
    font-family: 'Roboto', sans-serif;
    display: flow-root;
    padding: 40px 0;
}
/*******/

.page_wrapper {
    max-width: 1316px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-navigation li a {
    z-index: 0;
}

.login_header_page_wrapper .page_wrapper {
    max-width: 1172px;
}

.content.content--primary {
    background-color: #f5f5f5;
}

.fa-check-circle {
    margin-right: 5px;
    color: #FFF;
}
.user_info {
    cursor: pointer;
}
/*.alert {
    margin-bottom: 0 !important;
}*/
.flash-message-content {
    margin-top: 0 !important;
}
.page-header .page-header-title {
    text-align: left !important;
}
.main_container {
    padding: 30px 0 !important;
}
/*.switch_user_block {
    padding: 20px 0;
    background-color: #f5f5f5;
}*/

.slim-label {
    font-size: 12px !important;
    letter-spacing: 1px;
    line-height: 18px;
    font-weight: 600 !important;
}

.block_header_link {
    position: relative;
    color: gray;
    text-decoration: none;
    cursor: not-allowed !important;
}

.block_header_link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    cursor: not-allowed !important;
    pointer-events: all;
}

.get_verified_btn a {
    max-width: 190px !important;
}
/* dashboard my league option dropdown*/
.league-option-dropdown{
    cursor: pointer;
    float: right;
    margin-right: 5px;
}
.league-option-dropdown li a{
    font-size: 12px;
    padding: 5px 8px !important;
    font-weight: normal;
}
.league-option-dropdown li a:hover{
    background-color: #f5f5f5;
}
.league-option-dropdown .dropdown-sub-menu li{
    width:auto;
}
.league-option-dropdown .dropdown-sub-menu{
    display: none;
    text-align: left;
    background: white;
    margin: auto;
    padding: 0;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 33px !important;
    z-index: 11;
    right: 2px;
    cursor: pointer;
}
.my-league-content span{
    width:75%;
    float: left;
}
.my-league-content{
    width:100%;
    position: relative;
}
.manage-league-btn{
    background-color: #FFF;
    color: #737373;
    border: 1px solid #737373;
    text-decoration: none;
    text-transform: uppercase;
    padding: 8px 5px 8px 5px;
    font-size: 12px;
    font-weight: bold;
    max-width: 110px;
    width: 100%;
    text-align: center;
    line-height: normal;
    border-radius: 2px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}
.manage-league-btn:hover,.manage-league-btn:focus{
    color: #737373;
}
#leagueStatsContent .desc_prog_right{
    margin-right:0;
}
#leagueStatsContent .teams_desc_block{
    height: auto !important;
}
#leagueStatsContent .desc_prog_left,#leagueStatsContent .team_desc_prog .progress_bar {
    max-width: 100%;
    flex: 95%;
}
.pending_approval_block_for_director {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    /*border-top: 1px solid #DDF4FF;*/
    border-bottom: 1px solid #DDF4FF;
    padding: 10px 0;
    justify-content: end;
}
.pending_approval_block_for_director .block_verified_tean_approval {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFF;
    background-color: #fcb900;
    padding: 10px 15px;
    padding: 8px 10px;    
}
.pending_approval_block_for_director .block_verified_tean_approval .fa.fa-info-circle.label-tip {
    cursor: pointer;
    font-size: 13px;
    color: #FFF;
}
/***mobile for header and footer css***/
@media only screen and (max-width:767px) {

    .main_container {
        overflow-x: hidden;
    }
    .main_header {
        padding: 25px 0;
    }

    .header_block {
        flex-direction: column;
    }

    .logo {
        display: block;
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .logo img {
        max-width: 235px !important;
    }

    .user_block {
        flex-wrap: wrap;
    }

    .line_menu_container .page_wrapper {
        flex-direction: column;
    }

    .line_menu_list {
        max-width: 100%;
        margin-top: 0;
        padding: 0 10px;
        width: 100%;
    }

    .menu_bar {
        max-width: 100%;
        display: block;
        padding: 15px;
        border: none;
        text-align: center;
        width: 100%;
        background: #57c0f5;
        position: relative;
        box-shadow: 0px 2px 4px 0px #00000040;
    }

    .menu_bar .three_line {
        background-color: #57c0f5;
        width: 60px;
        height: 100%;
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        border-bottom-style: solid;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        gap: 8px;
        justify-content: center;
        cursor: pointer;
    }

    .menu_bar .three_line span {
        height: 4px;
        background: #FFF;
        width: 100%;
        max-width: 35px;
        padding: 0;
        display: block;
        text-align: center;
    }

    .menu_bar span {
        display: inline-block;
        color: #FFF;
        font-weight: bold;
        font-size: 20px;
    }

    .menu_bar span a {
        display: inline-block;
        color: #FFF;
        font-weight: bold;
        font-size: 20px;
    }

    .main_menu {
        display: none;
    }

    .line_menu_list ul li {
        display: block !important;
        margin: 0;
    }

    .line_nav {
        display: none;
    }

    .line_menu_list ul li a {
        padding: 15px 0;
        text-transform: uppercase;
    }

    .line_menu_list ul li .submenu {
        position: relative;
        top: 0;
        background-color: #FFF;
    }

    .line_menu_list ul.submenu li a {
        text-align: center;
    }

    .line_menu_list ul li:hover .submenu, .submenu:hover {
        position: relative;
        top: 0;
        width: 100%;
        display: none;
    }

    .get_verified_btn {
        display: block;
        padding: 15px 0;
    }

    .line_menu_list ul li a:hover {
        color: #FFF !important;
    }

    .line_menu_list ul li a.active {
        color: #000;
    }

            /******footer******/
    .main_footer {
        padding: 25px 0;
    }

    .footer_row1 , .footer_links {
        flex-direction: column;
    }

    .footer_links {
        gap: 20px;
    }

    .footer_row2 {
        margin: 20px auto 0;
        padding: 20px 0 0 0;
    }

    .line_menu_container .page_wrapper {
        padding: 0;
    }

    .line_btns a {
        display: block;
    }
    .fa.fa-bars {
        display: none;
    }

    .line_menu_list ul.submenu li a:hover {
        color: #737373 !important;
    }

    .dropdown-sub-menu li {
        width: 100%;
    }

    .line_btns ul li .dropdown-sub-menu li {
        position: relative;
    }

    .line_menu_list .submenu { 
        background-color: #FFF !important;
    }

    .loading-spinner-icon.basketball {
        background: transparent url("/assets/images/preloader-gray-basketball-image.gif") no-repeat scroll center center;
        height: 250px;
        width: 250px;
        background-size: 100%;
        left: calc(31% - 50px);
        top: calc(40% - 50px);
    }

    .loading-spinner-icon.baseball {
        background: transparent url("/assets/images/preloader-gray-baseball.gif") no-repeat scroll center center;
        height: 250px;
        width: 250px;
        background-size: 100%;
        left: calc(31% - 50px);
        top: calc(40% - 50px);
    }

    .loading-spinner-icon.soccer {
        background: transparent url("/assets/images/preloader-gray-soccer-image.gif") no-repeat scroll center center;
        height: 200px;
        width: 200px;
        background-size: 65%;
        left: calc(31% - 50px);
        top: calc(40% - 50px);
    }

    .loading-spinner-icon.volleyball {
        background: transparent url("/assets/images/preloader-gray-vollayball-image.gif") no-repeat scroll center center;
        height: 200px;
        width: 200px;
        background-size: 100%;
        left: calc(31% - 50px);
        top: calc(40% - 50px);
    }

    .loading-spinner-icon.football {
        background: transparent url("/assets/images/preloader-gray-tackel-football.gif") no-repeat scroll center center;
        height: 250px;
        width: 250px;
        background-size: 65%;
        left: calc(31% - 50px);
        top: calc(40% - 50px);
    }

    .loading-spinner-icon.flag {
        background: transparent url("/assets/images/preloader-gray-flag-football.gif") no-repeat scroll center center;
        height: 250px;
        width: 250px;
        background-size: 65%;
        left: calc(31% - 50px);
        top: calc(40% - 50px);
    }

    .loading-spinner-icon.softball {
        background: transparent url("/assets/images/preloader-gray-flag-softball.gif") no-repeat scroll center center;
        height: 350px;
        width: 350px;
        background-size: 65%;
        left: calc(31% - 50px);
        top: calc(40% - 50px);
    }

    .header {
        background-color: unset !important;
    }

    .dropdown-sub-menu {
        top: 52px !important;
    }

    .dropdown-sub-menu li {
        width: 160px;
    }

    .payment_table_block {
        padding: 14px 0 !important;
    }
}

/*********************ipad for header and footer*************************/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation : portrait) {
    .line_menu_container {
        padding: 10px 0;
    }

    .line_menu_container .page_wrapper {
        flex-wrap: wrap;
    }

    .line_btns {
        justify-content: flex-start;
    }
}
