.form-group {
    display: flex;
    flex-direction: column;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 6px rgb(65 24 219 / 16%);
}

button {
    transition: 0.5s;
}

.button-red {
    border: 1px solid red;
    color: #fff;
    display: inline-block;
    padding: 7px 16px 7px 16px;
    text-decoration: none;
    height: 30px;
    font-size: 12px;
    background-color: red;
}

.button-red:hover {
    border: 1px solid red;
    color: red;
    display: inline-block;
    padding: 7px 16px 7px 16px;
    text-decoration: none;
    background-color: #fff;
}

.button-tdingo {
    border: 1px solid #00b2d9;
    color: #fff;
    display: inline-block;
    padding: 7px 16px 7px 16px;
    text-decoration: none;
    height: 30px;
    font-size: 12px;
    background-color: #00b2d9;
}

.button-tdingo:hover {
    border: 1px solid #00b2d9;
    color: #00b2d9;
    display: inline-block;
    padding: 7px 16px 7px 16px;
    text-decoration: none;
    background-color: #fff;
}

a.button-tdingo:focus {
    border: 1px solid #00b2d9;
    color: #fff;
    display: inline-block;
    padding: 7px 16px 7px 16px;
    text-decoration: none;
}

.blackbox_tdingo {
    padding: 15px;
    border: 1px solid #3e3d3da1;
    background-color: #1f1f1f;
    border-radius: 10px;
    margin: 0px 1% 15px 1%;
}

.btngrp-td-blk {
    border: 1px solid #00b2d9;
    color: #fff;
    display: inline-block;
    padding: 3px 16px 7px 16px;
    text-decoration: none;
    height: 30px;
    font-size: 2vh;
    background-color: transparent;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    transition: .5s ease;
}

.btngrp-td-blk:hover {
    border: 5px solid #fef200;
    color: #fef200;
    display: inline-block;
    padding: 3px 16px 7px 16px;
    text-decoration: none;
    height: 30px;
    font-size: 2vh;
    background-color: transparent;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
}

.btngrp-td-blk-active {
    border: 5px solid #00b2d9;
    color: #00b2d9;
    display: inline-block;
    padding: 3px 16px 7px 16px;
    text-decoration: none;
    height: 30px;
    font-size: 2vh;
    background-color: transparent;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    font-weight: bold;
    transition: 1s ease;
}

.btngrp-td-wht {
    border: 1px solid #00b2d9;
    color: #000;
    display: inline-block;
    padding: 3px 16px 7px 16px;
    text-decoration: none;
    height: 30px;
    font-size: 2vh;
    background-color: transparent;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    transition: .5s ease;
}

.btngrp-td-wht:hover {
    border: 5px solid #000;
    color: #000;
    display: inline-block;
    padding: 3px 16px 7px 16px;
    text-decoration: none;
    height: 30px;
    font-size: 2vh;
    background-color: transparent;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
}

.btngrp-td-wht-active {
    border: 5px solid #00b2d9;
    color: #00b2d9;
    display: inline-block;
    padding: 3px 16px 7px 16px;
    text-decoration: none;
    height: 30px;
    font-size: 2vh;
    background-color: transparent;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    font-weight: bold;
    transition: .5s ease;
}

.card_layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    -webkit-box-shadow: 15px 15px 27px #e1e1e3, -15px -15px 27px #ffffff;
    box-shadow: 15px 15px 27px #eee, -15px -15px 27px #eee;
}

.card_layout_black {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

/*GLOW ON A TAGS*/
a:active {
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 20px #fff, 0 0 10px #fff, 0 0 30px #00b2d9;
    }

    to {
        text-shadow: 0 0 30px #fff, 0 0 10px #00b2d9, 0 0 20px #fff;
    }
}

/*GLOW ON A TAGS*/


/*GRADIENT BACKGROUND*/
.tdingo-gradient {
    background: #0099F7;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #F11712, #0099F7);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #F11712, #0099F7);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/*GRADIENT BACKGROUND END*/

/*SLIDE IN CSS*/

.come-in {
    opacity: 1;
    transform: translateY(150px);
    animation: come-in 1s ease forwards;
}

.come-in:nth-child(odd) {
    opacity: 1;
    animation-duration: 0.6s;
    /* So they look staggered */
}

@keyframes come-in {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide_in {
    opacity: 0;
}

.slide-in-frombottom {
    opacity: 1;
    transform: translateY(50px);
    animation: come-in .2s ease forwards;
}

.slide-in-fromleft {
    opacity: 1;
    transform: translateX(-50px);
    animation: come-in .2s ease forwards;
}

.slide-in-fromright {
    opacity: 1;
    transform: translateX(50px);
    animation: come-in .2s ease forwards;
}

.slide-in-fromtop {
    opacity: 1;
    transform: translateY(-50px);
    animation: come-in .2s ease forwards;
}


/*SLIDE IN CSS END*/

/*NEW CSS - 20211122*/

/*CIRCLE BUTTON*/
.circle_button_orange {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    transition: 0.5s;
    color: orange;
}

.circle_button_orange:hover {
    background-color: orange;
    color: #fff;
}

/*CIRCLE BUTTON*/

/*SECTION ANIMATION CSS*/
section {
    transition: 1s;
}

/*SECTION CSS*/

/*OPEN FORM*/
.open_form {
    background-color: #fff0 !important;
    color: #00b2d9;
    border: 1px solid #00b2d9;
    padding: 5px 4px 5px 5px;
    border-radius: 5px;
    font-size: 3em;
    width: auto;
}

/*OPEN FORM*/

/*LABEL ANIMATION*/
label.no_placeholder {
    position: absolute;
    left: 10px;
    top: 7px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 3vh;
    color: #ddd;
    cursor: text;
    z-index: -1;
    padding: 0px 5px 0px 5px;
}

label.focus {
    font-size: 2vh;
    top: -10px;
    background-color: #fff;
    z-index: 1;
    left: 15px;
}

/*LABEL ANIMATION*/

/*FORM SECTION*/

.active_section {
    /*border-right:3px solid red;*/
    border-left: 3px solid red;
}

.active_section_text {
    font-weight: bold;
    color: #000 !important;
}

.complete_section_text {
    color: #52b49c !important;
}

.complete_section {
    background-color: #52b49c33 !important;
}

.form_section_text {
    color: #777;
    text-decoration: none;
}

.form_subsection_active {
    display: block !important;
}

.form_subsection {
    display: none;
}

/*FORM SECTION*/

/*SPORTS ICON*/
.sport_icon {
    color: #ddd;
}

.circle_button {
    font-size: 3rem;
    color: orange;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: none;
    background-color: #fff0;
}

.circle_button:hover {
    background-color: #ddd;
}

/*SPORTS ICON*/


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

/*ACCORDIAN*/
.accordion {
    background-color: #0286a2;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 2rem;
    transition: 0.5s;
}

.active_accordian,
.accordion:hover {
    background-color: #00b2d9;
}

.accordion:after {
    content: '\276F';
    color: #fff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active_accordian:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    border-radius: 0px;
    transition: max-height 0.2s ease-out;
}

/*ACCORDIAN END*/

/* ACCORDION BLACK*/
.accordion_blk {
    background-color: #30313d;
    border: 1px solid #424353;
    color: #ddd;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 14px;
    transition: 0.5s;
}

.accordion_blk:nth-child(1) {
    border-radius: 10px 10px 0px 0px;
}

.accordion_blk:nth-last-child(2) {
    border-radius: 0px 0px 10px 10px;
}

.active_accordian_blk,
.accordion_blk:hover {
    color: #00b2d9;
}

.panel_blk {
    padding: 0 18px;
    background-color: #30313d;
    border: 1px solid #424353;
    max-height: 0;
    overflow: hidden;
    border-radius: 0px;
    transition: max-height 0.2s ease-out;
}

/*ACCORDION BLACK END */


/*BUTTON HOVER*/
.button-tdingo:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 6px rgba(65, 24, 219, 0.16);
}

.button-tdingo {
    transition: 0.5s;
}

.button-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 6px rgba(65, 24, 219, 0.16);
}

.button-red {
    transition: 0.5s;
}

.button-grey:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 6px rgba(65, 24, 219, 0.16);
    background-color: #fff;
    color: grey;
}

.button-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 6px rgba(65, 24, 219, 0.16);
    background-color: #fff;
    color: #000;
}

.button-red {
    transition: 0.5s;
}

.button-grey {
    transition: 0.5s;
}

.button-white {
    transition: 0.5s;
}

.button-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 6px rgba(65, 24, 219, 0.16);
    background-color: #fff;
    color: yellowgreen;
}

.button-green {
    transition: 0.5s;
}

/*BUTTON HOVER*/


/*GREEN BUTTON*/
.button-green {
    border: 1px solid yellowgreen;
    color: #fff;
    display: inline-block;
    padding: 7px 16px 7px 16px;
    text-decoration: none;
    height: 30px;
    font-size: 12px;
    background-color: yellowgreen;
    transition: 0.5s;
}

/*GREEN BUTTON*/

/*GREY BUTTON*/
.button-grey {
    border: 1px solid grey;
    color: #fff;
    display: inline-block;
    padding: 7px 16px 7px 16px;
    text-decoration: none;
    height: 30px;
    font-size: 12px;
    background-color: grey;
    transition: 0.5s;
}

/*WHITE BUTTON*/
.button-white {
    border: 1px solid #fff;
    color: #fff;
    display: inline-block;
    padding: 7px 16px 7px 16px;
    text-decoration: none;
    height: 30px;
    font-size: 12px;
    background-color: transparent;
    transition: 0.5s;
}

/*ORANGE BUTTON GROUP*/
.o-btn-group {
    display: inline-flex;
    border: 1px solid orange;
    overflow: hidden;
    border-radius: 4px;
}

.o-btn-group>.o-btn {
    border-radius: 0;
    border: none;
    border-right: 1px solid orange;
    padding: 5px 10px 5px 10px;
    color: #fff;
    background-color: orange;
}

.o-btn-group>.o-btn-inactive {
    border-radius: 0;
    border: none;
    border-right: 1px solid orange;
    padding: 5px 10px 5px 10px;
    color: orange !important;
    background-color: #fff !important;
}

.o-btn-group>.o-btn-inactive:hover {
    color: #fff;
    background-color: #ffdea0 !important;
}

.o-btn-group>.o-btn:last-child {
    border-right: none;
}

.o-btn-group>.o-btn-inactive:last-child {
    border-right: none;
}

.o-btn-group>.o-btn-inactive-blk {
    border-radius: 0;
    border: none;
    border-right: 1px solid orange;
    padding: 5px 10px 5px 10px;
    color: orange !important;
    background: none !important;
}

.o-btn-group>.o-btn-inactive-blk:hover {
    color: #fff;
    background-color: #ffdea0 !important;
}

.o-btn-group>.o-btn-inactive-blk:last-child {
    border-right: none;
}


/*GREY*/
.g-btn-group {
    display: inline-flex;
    border: 1px solid grey;
    overflow: hidden;
    border-radius: 4px;
}

.g-btn-group>.g-btn {
    border-radius: 0;
    border: none;
    border-right: 1px solid grey;
    padding: 5px 10px 5px 10px;
    color: #fff;
    background-color: grey;
}

.g-btn-group>.g-btn-inactive {
    border-radius: 0;
    border: none;
    border-right: 1px solid grey;
    padding: 5px 10px 5px 10px;
    color: grey;
}

.g-btn-group>.g-btn-inactive:hover {
    color: #fff;
    background-color: #ddd;
}

.g-btn-group>.g-btn:last-child {
    border-right: none;
}

.g-btn-group>.g-btn-inactive:last-child {
    border-right: none;
}

/*Tdingo Blue*/
.b-btn-group {
    display: inline-flex;
    border: 1px solid #00b2d9;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.b-btn-group>.b-btn {
    border-radius: 0;
    border: none;
    border-right: 1px solid #00b2d9;
    padding: 5px 10px 5px 10px;
    color: #fff;
    background-color: #00b2d9;
}

.b-btn-group>.b-btn-inactive {
    border-radius: 0;
    border: none;
    border-right: 1px solid #00b2d9;
    padding: 5px 10px 5px 10px;
    color: #00b2d9 !important;
    background-color: #fff !important;
}

.b-btn-group>.b-btn-inactive:hover {
    color: #fff;
    background-color: #bfebf5 !important;
}

.b-btn-group>.b-btn:last-child {
    border-right: none;
}

.b-btn-group>.b-btn-inactive:last-child {
    border-right: none;
}

.option_ellipsis {
    border: none;
    border-radius: 50%;
    background-color: #fff;
    transition: 0.5s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.option_ellipsis:hover {
    background-color: #ddd;
}

.focus_list:hover {
    background-color: #f9f9f9;
}

.focus_list_black:hover {
    background-color: #ddd;
    color: #777;
}

.focus_list_black {
    transition: 0.2s;
}

.focus_text_blue:hover {
    color: #00b2d9;
    font-weight: bold;
}

.focus_text_blue {
    transition: 0.2s;
}

.focus_white_text_blue:hover {
    color: #00b2d9;
    font-weight: bold;
}

.focus_white_text_blue {
    color: #fff;
    transition: 0.2s;
}

/*CSS TO BE UPDATED IN THE MAIN STYLES*/

/*CSS STYLES FOR DRAG AND DROP*/
.dropped_item {
    margin: 0px 0px 10px 0px ! important;
}

/*CSS STYLES FOR DRAG AND DROP END*/


/*CSS FOR BRACKETS*/
.bracket {
    padding: 0px 40px 40px 40px;
    margin: 5px;
}

.bracket {
    display: flex;
    flex-direction: row;
    position: relative;
}

.column {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    justify-content: space-around;
    align-content: center;
}

.match {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 240px;
    max-width: 240px;
    height: 120px;
    margin: 12px 24px 12px 0;
    border: 2px solid transparent;
    margin-right: 48px;
}

.match .match-top {
    border-radius: 2px 2px 0 0;
}

.match .match-bottom {
    border-radius: 0 0 2px 2px;
}

.match .team {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.match .team span {
    padding-left: 8px;
}

.match .team span:last-child {
    padding-right: 8px;
}

.match .team .score {
    margin-left: auto;
}

.match .team:first-child {
    margin-bottom: 2px;
}

.match-lines {
    display: block;
    position: absolute;
    top: 50%;
    bottom: 0;
    margin-top: 0px;
    right: -1px;
}

.match-lines .line.one {
    height: 1px;
    width: 12px;
}

.match-lines .line.two {
    height: 72px;
    width: 1px;
    left: 11px;
}

/* .column:nth-child(odd) {*/
/*	 background-color: #00b2d920;*/
/*}*/

.match:nth-child(even) .match-lines .line.two {
    transform: translate(0, -100%);
}

.column:first-child .match-lines.alt {
    display: none !important;
}

.column:last-child .match-lines {
    display: none;
}

.column:last-child .match-lines.alt {
    display: block;
}

.column:nth-child(2) .match-lines .line.two {
    height: 144px;
}

.column:nth-child(3) .match-lines .line.two {
    height: 288px;
}

.column:nth-child(4) .match-lines .line.two {
    height: 576px;
}

.column:nth-child(5) .match-lines .line.two {
    height: 1152px;
}

.column:nth-child(6) .match-lines .line.two {
    height: 2344px;
}

.match-lines .line {
    background: #00b2d9;
    position: absolute;
}

.match-lines {
    opacity: 0.75;
    right: -12px;
}

.match-lines.alt {
    left: -28px;
}

.team {
    background: rgba(50, 54, 65, 0.4);
    color: #ddd;
    border: 2px solid transparent;
}

.team:first-child {
    margin-bottom: 2px;
}

.team:last-child {
    margin-top: 2px;
}

.winner-top .match-top,
.winner-bottom .match-bottom {
    background: #323641;
    color: #fff;
    z-index: 1;
}

.winner-top .match-top .score,
.winner-bottom .match-bottom .score {
    color: #fff;
}

.match .team .image {
    height: 30px;
    width: 30px;
    float: right;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    /*border: 1px solid #fff;*/
    margin: 0px 0px 0px 8px;
}

.match .team .name {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    max-width: 75%;
    white-space: break-spaces;
    overflow-x: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.match .seed {
    display: none;
}

.match .match-top {
    border-radius: 10px 10px 0px 0px;
    border-bottom: 1px solid #fff;
}

.match .match-bottom {
    border-radius: 0px 0px 10px 10px;
}

.team {
    overflow: hidden;
}

.score:before {
    opacity: 0.25;
    position: absolute;
    z-index: 1;
    content: '';
    display: block;
    background: black;
    min-height: 100px;
    min-width: 50px;
    transform: translate(-20px, -30px) rotate(25deg);
}

/*CSS FOR BRACKETS END*/

/*CSS FOR MATCH BUTTON GROUPS*/
.match_btn_group_active {
    font-weight: bold !important;
}


/*CSS FOR MATCH BUTTON GROUPS END*/

/*CSS FOR PARTICIPANTS BUTTON GROUPS*/
.participants_btn_group_active {
    font-weight: bold !important;
}


/*CSS FOR PARTICIPANTS BUTTON GROUPS END*/

/*CSS FOR LEADERBOARD BUTTON GROUPS*/
.leaderboard_btn_group_active {
    font-weight: bold !important;
}


/*CSS FOR LEADERBOARD BUTTON GROUPS END*/


/*POPOVER CSS*/
.popover {
    right: 0vw !important;
    left: auto !important;
    /*top:5vh!important;*/
    width: 100%;
}

.arrow {
    left: 95% !important;
}

/*POPOVER CSS END*/

/*STATUS BOX CSS*/
.status_green {
    margin: 0px 10px 0px 5px;
    background-color: #52b49c33;
    color: #52b49c;
    padding: 5px;
    font-size: 10px;
    border-radius: 5px;
    border: 1px solid #52b49c;
}

.status_red {
    margin: 0px 10px 0px 5px;
    background-color: #ff00002e;
    color: #e1223c;
    padding: 5px;
    font-size: 10px;
    border-radius: 5px;
    border: 1px solid #e1223c;
}

.status_grey {
    margin: 0px 10px 0px 5px;
    background-color: #eee;
    color: grey;
    padding: 5px;
    font-size: 10px;
    border-radius: 5px;
    border: 1px solid grey;
}

.status_orange {
    margin: 0px 10px 0px 5px;
    background-color: #f3d3a421;
    color: #cb8300;
    padding: 5px;
    font-size: 10px;
    border-radius: 5px;
    border: 1px solid #cb8300;
}

/*STATUS BOX CSS*/


/*NEW CSS - 20211122 END*/

.add_fee_inputs::placeholder {
    color: #777;
}


/*CSS FOR CARD*/

.property-card {
    height: 25em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    -webkit-box-shadow: 15px 15px 27px #e1e1e3, -15px -15px 27px #ffffff;
    box-shadow: 15px 15px 27px #e1e1e3, -15px -15px 27px #ffffff;
}

.property-image {
    height: 15em;
    width: 150%;
    padding: 1em 2em;
    position: Absolute;
    top: -50px;
    /*background-size:auto;*/
    /*background-repeat:no-repeat;*/
    left: -65px;
    object-fit: cover;
    object-position: 50%;
}

/* Bottom Card Section */

.property-description {
    background-color: #fff;
    color: #000;
    width: 100%;
    height: 15em;
    position: absolute;
    bottom: 0em;
    padding: 0.5em 1em;
    text-align: center;
}

/*CSS FOR CARD END*/

/* CSS CONTAINER LOADER */

.container_loader {
    display: flex;
    justify-content: center;
    animation: spin 1s infinite linear;
    /*   border: 2px solid rgba(30, 30, 30, 0.5); */
    border-left: 4px solid #00b2d9;
    border-radius: 50%;
    height: 50px;
    margin-bottom: 10px;
    width: 50px;
}


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

    100% {
        transform: rotate(360deg);
    }
}


/* CSS CONTAINER LOADER END */

/* PILL LIST */
.PillList-item {
    cursor: pointer;
    display: inline-block;
    float: left;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    margin: 0 12px 12px 0;
    text-transform: capitalize;
}

.PillList-item input[type="checkbox"] {
    display: none;
}

.PillList-item input[type="checkbox"]:checked+.PillList-label {
    background-color: #00b2d9;
    border: 1px solid #00b2d9;
    color: #fff;
    padding-right: 16px;
    padding-left: 16px;
}

.PillList-label {
    border: 1px solid #00b2d9;
    border-radius: 20px;
    color: #00b2d9;
    display: block;
    padding: 7px 28px;
    text-decoration: none;
}

.PillList-item input[type="checkbox"]:checked+.PillList-label .Icon--checkLight {
    display: inline-block;
}

.PillList-item input[type="checkbox"]:checked+.PillList-label .Icon--addLight,
.PillList-label .Icon--checkLight,
.PillList-children {
    display: none;
}

.PillList-label .Icon {
    width: 12px;
    height: 12px;
    margin: 0 0 0 12px;
}

.Icon--smallest {
    font-size: 12px;
    line-height: 12px;
}

.Icon {
    background: transparent;
    display: inline-block;
    font-style: normal;
    vertical-align: baseline;
    position: relative;
}

.PillList-label-disabled {
    border: 1px solid grey;
    border-radius: 20px;
    color: grey;
    display: block;
    padding: 7px 28px;
    text-decoration: none;
}

/* PILL LIST END */

@keyframes breath-in-out {
    0% {
        transform: scale(.95);
    }

    25% {
        transform: scale(1);
    }

    50% {
        transform: scale(.95);
    }

    75% {
        transform: scale(1);
    }

    100% {
        transform: scale(.95);
    }
}

.breath-in-out {
    animation: breath-in-out 10s linear infinite;
}

@keyframes breath-in {
    0% {
        transform: scale(.90);
    }

    100% {
        transform: scale(1);
    }
}

.breath-in {
    animation: breath-in 10s linear;
}

@keyframes breath-out {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(.95);
    }
}

.breath-out {
    animation: breath-out 10s linear;
}

.header_shine {
    background: #222 -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff)) 0 0 no-repeat;
    -webkit-background-size: 150px;
    -webkit-background-clip: text;
    -webkit-animation-name: header_shine;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    /* text-shadow: 0 0px 0px rgba(255, 255, 255, 0.5); */
}

@-webkit-keyframes header_shine {

    0%,
    10% {
        background-position: -1000px;
    }

    20% {
        background-position: top left;
    }

    90% {
        background-position: top right;
    }

    100% {
        background-position: 1000px;
    }
}

#apple-pay-button {
    height: 48px;
    width: 100%;
    display: inline-block;
    appearance: -apple-pay-button;
    -webkit-appearance: -apple-pay-button;
    -apple-pay-button-type: plain;
    -apple-pay-button-style: black;
}

/* APPLE STYLE CHECKBOXES */
input[type="checkbox"].ios8-switch {
    position: absolute;
    margin: 8px 0 0 16px;
}

input[type="checkbox"].ios8-switch+label {
    position: relative;
    padding: 5px 0 0 50px;
    line-height: 2.0em;
}

input[type="checkbox"].ios8-switch+label:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 40px;
    /* x*5 */
    height: 24px;
    /* x*3 */
    border-radius: 16px;
    /* x*2 */
    background: #fff;
    border: 1px solid #d9d9d9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

input[type="checkbox"].ios8-switch+label:after {
    content: "";
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    width: 24px;
    /* x*3 */
    height: 24px;
    /* x*3 */
    border-radius: 16px;
    /* x*2 */
    background: #fff;
    border: 1px solid #d9d9d9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

input[type="checkbox"].ios8-switch+label:hover:after {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

input[type="checkbox"].ios8-switch:checked+label:after {
    margin-left: 16px;
}

input[type="checkbox"].ios8-switch:checked+label:before {
    background: #55D069;
}

/* SMALL */

input[type="checkbox"].ios8-switch-sm {
    margin: 5px 0 0 10px;
}

input[type="checkbox"].ios8-switch-sm+label {
    position: relative;
    padding: 0 0 0 32px;
    line-height: 1.3em;
}

input[type="checkbox"].ios8-switch-sm+label:before {
    width: 25px;
    /* x*5 */
    height: 15px;
    /* x*3 */
    border-radius: 10px;
    /* x*2 */
}

input[type="checkbox"].ios8-switch-sm+label:after {
    width: 15px;
    /* x*3 */
    height: 15px;
    /* x*3 */
    border-radius: 10px;
    /* x*2 */
}

input[type="checkbox"].ios8-switch-sm+label:hover:after {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

input[type="checkbox"].ios8-switch-sm:checked+label:after {
    margin-left: 10px;
    /* x*2 */
}

/* LARGE */

input[type="checkbox"].ios8-switch-lg {
    margin: 10px 0 0 20px;
}

input[type="checkbox"].ios8-switch-lg+label {
    position: relative;
    padding: 7px 0 0 60px;
    line-height: 2.3em;
}

input[type="checkbox"].ios8-switch-lg+label:before {
    width: 50px;
    /* x*5 */
    height: 30px;
    /* x*3 */
    border-radius: 20px;
    /* x*2 */
}

input[type="checkbox"].ios8-switch-lg+label:after {
    width: 30px;
    /* x*3 */
    height: 30px;
    /* x*3 */
    border-radius: 20px;
    /* x*2 */
}

input[type="checkbox"].ios8-switch-lg+label:hover:after {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

input[type="checkbox"].ios8-switch-lg:checked+label:after {
    margin-left: 20px;
    /* x*2 */
}

.dark_placeholder::placeholder {
    color: #777;
}


/* CSS FOR SWEET ALERT FONT SIZE */
.swal2-popup {
    font-size: 14px !important;
}

/* CSS FOR SWEET ALERT FONT SIZE */



.first-hallenge h3,
.icon-aero,
.icon-aero ul li,
.loader-section img,
.logo-main,
.main-row,
.play,
.video-container .link {
    text-align: center
}

.bann-icon,
.previous {
    float: right
}

.icon-aero ul,
.tda ul {
    list-style: none
}

.buttion a:focus,
.buttion a:hover,
.edit a:focus,
.edit a:hover,
.latter a:hover,
.log-new-01,
.new-tidingo a:focus,
.new-tidingo a:hover,
.next,
.pac a:focus,
.pac a:hover,
.section-one a:focus,
.section-one a:hover,
.section-two a:focus,
.section-two a:hover,
.tapss,
.tda ul li a,
.top-sect a:focus,
.top-sect a:hover,
.upc-text :focus,
.upc-text :hover,
.uplod a:hover,
a:hover,
nav a {
    text-decoration: none
}

#playme-01,
.lightbox-close,
.modal-header .close1,
button.close1 {
    text-transform: uppercase
}

:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

nav {
    padding-top: 90px
}

/* input[type=date],
input[type=file],
input[type=text],
input[type=textarea],
select,
textarea {
    background-color: #4f5259
} */

.row.background {
    color: #000;
    background: #00b2d9;
    position: relative;
    height: 60px;
    margin-left: 0 !important;
    margin-right: 0 !important
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
label,
p,
ul {
    margin: 0
}

body {
    font-family: Ramabhadra, sans-serif;
    background-size: 100% 100%;
    overflow-x: hidden;
    background-attachment: fixed;
    height: 100vh
}

.edit h3,
.first-hallenge h3,
.logo-main p,
.search h3,
.tda ul li a,
.w3ls-text h5 {
    font-family: conthrax-sb
}

body::-webkit-scrollbar {
    display: none
}

.clearfix {
    clear: both
}

@font-face {
    font-family: conthrax-sb;
    src: url(../fonts/conthrax-sb.ttf) format('truetype')
}

@font-face {
    font-family: roboto;
    src: url(../fonts/Roboto-Regular.ttf) format('truetype')
}

@font-face {
    font-family: Warriors;
    src: url(../fonts/Warriors.ttf) format('truetype')
}

label,
ul {
    padding: 0
}

::placeholder {
    color: #fafafa;
    opacity: 1
}

::-webkit-input-placeholder {
    color: #fafafa
}

:-moz-placeholder {
    color: #fafafa
}

::-moz-placeholder {
    color: #fafafa
}

:-ms-input-placeholder {
    color: #fafafa
}

.loader-section img {
    margin: 300px auto 0;
    display: inherit;
    z-index: 1001
}

.main-row {
    height: 100%;
    padding: 5px;
    margin: 2em auto
}

.frame-border {
    width: 370px;
    height: 690px;
    outline: 0;
    border-color: #000;
    border-width: 50px 15px;
    border-style: solid;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    margin: 10px auto;
    background-size: cover
}

.video-container {
    position: relative;
    bottom: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000
}

.video-container .poster img {
    width: 100%;
    bottom: 0;
    position: absolute
}

.video-container .filter {
    z-index: 100;
    position: absolute;
    background: rgba(0, 0, 0, .4);
    width: 100%
}

.video-container .title-container {
    z-index: 1000;
    position: absolute;
    top: 10%;
    width: 100%;
    text-align: center;
    color: #fff
}

.video-container .description .inner {
    font-size: 1em;
    width: 45%;
    margin: 0 auto
}

.video-container .link {
    position: absolute;
    bottom: 3em;
    width: 100%;
    z-index: 1001;
    font-size: 2em;
    color: #fff
}

.video-container .link a {
    color: #fff
}

.video-container video {
    z-index: 0;
    bottom: 0
}

.video-container video.fillWidth {
    width: 100%
}

.logo-main {
    margin-top: 25%
}

.logo-main img {
    width: 167px;
    margin-top: 4px
}

.logo-main p {
    font-size: 27px;
    color: #fff;
    font-weight: 600;
    margin-top: 22px;
    text-shadow: none
}

.icon-aero {
    padding: 0
}

.icon-aero ul li {
    font-size: 50px;
    color: #fff
}

.first-hallenge h3,
.next {
    font-size: 20px;
    font-weight: 600
}

.icon-aero ul li a {
    color: #fff
}

.first-hallenge {
    margin: 0;
    padding: 0
}

.first-hallenge h3 {
    color: #eae41b;
    padding-top: 0;
    margin-bottom: 10px
}

.container-main-section {
    width: 100% !important;
    margin: 0 auto
}

.next {
    color: #000
}

.previous {
    padding-right: 0
}

.w3-large {
    background: 0 0;
    border: none
}

.vidio-section {
    background: 0 0;
    padding: 5px;
    height: 300px;
    width: 100%;
    margin: 0 auto
}

.banner-vidio,
.banner1-vidio {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%
}

.banner-vidio {
    background-image: url(../images/img/main.png)
}

.banner1-vidio {
    background-image: url(../images/img/main1.png)
}

.play {
    margin: 0 auto
}

.play i {
    font-size: 50px;
    color: #fffeb;
    padding-top: 130px
}

.first-banner {
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0 auto 3px;
    padding: 2px
}

.tda {
    margin: 0;
    padding: 0
}

.tda ul li {
    font-size: 30px;
    text-align: left
}

.tda ul li a {
    color: #fef200;
    margin-left: 7px;
    font-weight: 700;
    margin-right: 0
}

.bann-icon li {
    float: left;
    position: relative;
    top: -32px;
    font-size: 18px !important;
    color: #000
}

.bann-icon li span {
    padding-left: 39px
}

.bann-icon li i {
    color: #00b2d9
}

.text {
    background: 0 0;
    padding: 10px;
    margin-top: 0;
    margin-bottom: 0;
    height: 70px;
    overflow: auto
}

.text::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5
}

.text::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: red
}

.text-01 {
    padding: 15px;
    height: 500px;
    overflow: auto
}

.text01::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5
}

.text-01::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: red
}

.text p {
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    text-align: left
}

.chall-id h3,
.edit h3,
.search h3,
.tapss,
.w3ls-text h5 {
    font-weight: 600
}

.kindly p,
.properties-img,
.properties-img img,
.social-icons,
.w3ls-text,
.w3ls-text h5 {
    text-align: center
}

.icon-aero-chall {
    margin: 0;
    padding: 0
}

.icon-aero-chall ul {
    list-style: none;
    margin-top: -24px
}

.icon-aero-chall ul li {
    font-size: 60px;
    color: #fff;
    text-align: center;
    margin-left: 40px
}

.icon-aero-chall ul li a {
    color: #fff;
    margin-right: 40px
}

.search {
    margin-top: 23px;
    padding: 0 0 30px
}

.search h3 {
    color: #fff202;
    font-size: 20px
}

.input-group.input-group-unstyled input.form-control-01 {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
    background: #4f5259;
    width: 100%;
    border: 1px solid #4f5259;
    padding: 10px;
    color: #fff;
    margin-bottom: 10px
}

.input-group-addon img {
    margin: -14px 0 0
}

.wthree-text {
    margin: 0 0 2px
}

.properties-img {
    box-shadow: 0 0 0 0 #555;
    height: 94px;
    width: 76px;
    margin: 0 auto
}

.properties-img img {
    height: 100%;
    width: 100%
}

.w3ls-text {
    padding: 1em
}

.w3ls-text h5 {
    font-size: 13px;
    color: #fff
}

.w3ls-text h5 a {
    color: #fff
}

.content-section {
    width: 50%;
    margin: -100px auto 0
}

.buttion-02 {
    margin-top: 24px
}

.properties-bottom {
    margin-top: 1.6em;
    float: left;
    width: 33.33%;
    padding: 0 .5em
}

.buttion a:focus,
a:hover {
    color: #282828
}

.buttion a:focus,
.tapss {
    color: #000
}

.tapss {
    font-size: 20px
}

.buttion a:hover {
    color: #000
}

.kindly {
    width: 100%;
    margin: 0 auto
}

.kindly p {
    color: #fff;
    font-size: 26px;
    margin-top: 135px
}

.social-icons {
    margin-top: 50px
}

.social-icons ul {
    display: inline-block;
    padding: 0
}

.social-icons ul li {
    position: inherit;
    display: inline-block;
    width: inherit
}

.creted h3,
.icon9,
.section-one h2,
.section-two h2,
.w3-bar-01 {
    position: relative
}

.social-icons ul li:nth-child(2) {
    margin: 0 .5em
}

.social-icons ul li:nth-child(3) {
    margin-right: .5em
}

.social-icons ul li a {
    background: url(../images/social-icons.png) 10px 12px no-repeat #55acee;
    display: block;
    height: 50PX;
    width: 50PX;
    -webkit-transition: .5s all;
    transition: .5s all;
    -moz-transition: .5s all;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 4px
}

.first-chlange,
.lightbox,
.pages-five,
.pages-forth,
.pages-six,
.pages-third {
    display: none
}

.social-icons ul li a:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px)
}

.social-icons ul li a.fb {
    background-position: 10px -24px;
    background-color: #3b5998
}

.social-icons ul li a.gp {
    background-position: 12px -60px;
    background-color: #dc4e41
}

.social-icons ul li a.drb {
    background-position: 10px -94px;
    background-color: #ea4c89
}

.secand-per {
    margin-top: 10px
}

.main-edit {
    background: 0 0;
    padding: 0
}

.edit {
    float: right;
    margin-top: 0
}

.edit h3 {
    color: #000;
    font-size: 20px;
    float: left;
    padding-left: 32px
}

.edit a {
    color: #fff
}

main-chall {
    margin: 0;
    padding: 0
}

.main-chall img {
    float: left;
    padding: 8px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid #00b2d9
}

.chall-id {
    float: left;
    margin-left: 44px;
    margin-top: -13px;
    text-align: left
}

.chalenges h2,
.cre-main-section,
.creted h3,
.star-ninja,
.star-ninja h3 {
    text-align: center
}

.chall-id h3 {
    color: #fef200;
    font-size: 22px;
    font-family: conthrax-sb
}

.chalenges h2,
.chall-id h5 {
    font-size: 20px;
    font-family: conthrax-sb
}

.chall-id h5 {
    color: #fff;
    font-weight: 400
}

.cha-01 {
    margin: 0;
    padding: 0
}

.chalenges h2 {
    margin-top: 20px;
    color: #fef200;
    font-weight: 600
}

.creted h3,
.icon9,
.section-one a,
.section-one h4,
.section-two a,
.section-two h2,
.star-ninja h3 {
    color: #fff
}

.cre-conte {
    width: 50%;
    margin: 0 auto
}

.creted {
    margin-top: 0
}

.creted h3 {
    font-size: 18px;
    font-weight: 500;
    top: 14px;
    font-family: conthrax-sb
}

.cre-main-section {
    margin: 0;
    padding: 0
}

.section-one {
    float: left;
    width: 30%;
    margin-top: 80px
}

.section-one img {
    width: 100px
}

.section-one h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    top: -114px;
    font-family: conthrax-sb
}

.section-one h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: -49px;
    font-family: conthrax-sb
}

.section-two {
    width: 40%;
    float: left
}

.icon9 {
    float: right;
    width: 30px;
    border-radius: 50%;
    height: 30px;
    padding: 3px;
    font-size: 19px;
    left: -21px;
    top: 5px
}

.section-two img {
    width: 150px;
    margin-top: 14px;
    margin-left: 31px
}

.section-two h2 {
    font-size: 50px;
    font-weight: 600;
    top: -152px;
    left: 2px;
    font-family: conthrax-sb
}

.ninja {
    background: 0 0;
    padding: 0 0 110px;
    margin-top: 20px
}

.star-ninja {
    margin-top: 26px
}

.star-ninja img {
    width: 160px
}

.star-ninja h3 {
    margin-top: 12px;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 17px
}

.text-chall p {
    text-align: left;
    padding: 10px;
    background: #ccc;
    margin-top: 3px;
    height: 43px;
    overflow: auto
}

.congra,
.latter,
.uplod,
.uplod p {
    text-align: center
}

.text-chall p::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5
}

.text-chall p::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: red
}

.text-chall p-01 {
    padding: 15px;
    height: 500px;
    overflow: auto
}

.text-chall p01::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5
}

.text-chall p-01::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: red
}

.modal-content {
    background-color: #000;
    height: 100vh !important;
}

.congra {
    margin-bottom: 30px
}

.congra h3 {
    color: #fff202;
    padding-top: 20px;
    font-weight: 600;
    font-family: conthrax-sb
}

.congra p {
    color: #fff;
    padding-top: 20px;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 82px;
    font-family: Ramabhadra, sans-serif
}

.uplod {
    background-image: url(../images/img/icons.png);
    background-size: 100% 100%;
    height: 160px;
    width: 118px;
    margin: 0 auto 60px
}

.buck-icon ul,
.buck-icon-main ul {
    margin-left: 18px;
    list-style: none
}

.uplod p {
    font-size: 16px;
    color: #fff;
    line-height: 25px;
    padding-top: 37px
}

.latter p {
    color: #fff;
    font-size: 14px
}

.latter a:hover {
    color: #fff
}

:root {
    --bg-primary: #121420;
    --bg-secondary: #1E2131;
    --text-primary: #E0E6ED;
    --text-secondary: #8E94A7;
    --accent-color: #00b2d9;
    --border-color: #2C3244;
}

.ctegry-from {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.ctegry-from:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
    outline: none;
}

.ctegry-from::placeholder {
    color: var(--text-secondary);
}

.text-input-white {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--text-primary);
    border: 1px solid var(--text-secondary);
    color: var(--bg-primary);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.text-input-white:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
    outline: none;
}

.text-input-white::placeholder {
    color: var(--text-secondary);
}

.ctegryfrom-brow,
.pac h3,
.top-sub p {
    text-align: center
}

.top-sub {
    background: #fef200;
    padding: 0
}

.top-sub p {
    font-size: 25px;
    padding: 10px
}

.top-sub a:hover {
    color: #000;
    text-decoration: none
}

.mod-02 {
    padding: 20px
}

.lunch-succ {
    position: absolute;
    left: 39%;
    top: -246px
}

.uplod-suss i {
    margin-top: 17px;
    color: #fff;
    font-size: 52px
}

.ctegryfrom-brow {
    background-color: #4f5259
}

.pac h3 {
    color: #fef200;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px
}

.cre-chall h3 {
    text-align: left;
    color: #fff;
    font-size: 16px;
    font-weight: 600
}

.like,
.plus-icon,
.top-sect p,
.upc-text p,
.uplo-img-section {
    text-align: center
}

.bucket {
    background: #000;
    padding: 4px;
    margin-bottom: 2px
}

.main-water img {
    width: 150px;
    float: left;
    margin-bottom: 8px
}

.buck-icon-01 {
    float: right;
    margin-top: 2px
}

.buck-icon ul {
    float: left
}

.buck-icon ul li {
    color: #fef200;
    font-size: 16px
}

.buck-icon ul li span {
    padding-left: 14px
}

.edi-0main {
    padding-top: 8px
}

.edi-0main p {
    color: #fff;
    font-size: 12px;
    position: relative;
    left: 10px
}

.als {
    font-size: 15px;
    color: #fff;
    margin-top: 0
}

.als-01 {
    font-size: 20px;
    color: #fef200;
    margin-top: 3px
}

.modal-01 {
    padding: 10px
}

.plus-icon {
    float: right;
    font-size: 24px;
    border: 1px solid #fff;
    height: 34px;
    width: 34px;
    margin-bottom: 0;
    margin-top: 0
}

.plus-icon a {
    color: #fff
}

.buck-icon-main {
    float: left;
    margin-top: 25px;
    list-style: none
}

.buck-icon-main ul li {
    color: #d8d7d2;
    font-size: 16px;
    width: 153px
}

.buck-icon-main ul li span {
    padding-left: 14px
}

.buck-icon-main ul li a img {
    width: 59px;
    margin-top: 5px;
    float: left
}

.buck-icon-main ul li p {
    color: #d8d7d2;
    font-size: 14px;
    position: relative;
    left: 10%
}

.congra-01 h3 {
    color: #fff202;
    padding-top: 20px;
    font-weight: 600
}

.congra-01 p {
    color: #fff;
    padding-top: 0;
    font-weight: 400;
    font-size: 16px
}

.magess {
    height: 150px;
    padding: 10px;
    border: 1px solid #1e2121;
    color: #fff;
    margin-bottom: 10px
}

.top-sect {
    background: #fef200;
    padding: 0;
    margin-bottom: 0
}

.top-sect p {
    font-size: 26px;
    padding: 10px
}

.top-sect a {
    color: #000
}

.col-md-4-main1,
.col-md-4-main2 {
    width: 40%;
    float: left;
    padding: 5px
}

.col-md-2-main3,
.col-md-2-main4 {
    width: 10%;
    float: left;
    padding: 5px
}

.cntry {
    width: 100%;
    padding: 11px !important;
    background: #505152;
    border: 1px solid #505152;
    color: #fff;
    margin-bottom: 2px !important
}

.from-section {
    padding: 5px 0 0
}

.lunch-succ-02 {
    position: absolute;
    left: 38%;
    top: -278px
}

.buck-icon ul li img {
    width: 20px;
    height: 20px
}

.uplo-img-section {
    background-color: #00b2d9;
    background-size: 100%;
    height: 200px;
    width: 200px;
    margin: 0 auto;
    border-radius: 50%
}

.upc-text p {
    font-size: 20px;
    color: #fff;
    line-height: 25px;
    padding-top: 75px
}

.edit a:focus,
.edit a:hover,
.section-one a:focus,
.section-one a:hover,
.section-two a:focus,
.section-two a:hover {
    color: #fff
}

.pac a:hover {
    color: #353535
}

.pac a:focus {
    color: #fff
}

.top-sect a:focus,
.top-sect a:hover,
.top-sub a {
    color: #000
}

.like img {
    width: 70px
}

.black-bucket {
    background: 0 0;
    padding: 4px;
    margin-bottom: 25px
}

.black img {
    width: 80px
}

.black-tex {
    padding-top: 8px
}

.black-tex p {
    color: #fff;
    font-size: 15px;
    position: relative;
    left: 10px
}

.black-tex span {
    color: #8dc53e
}

.tab-section img {
    width: 100%
}

.lightbox {
    background-color: rgba(0, 0, 0, .8);
    overflow: scroll;
    position: fixed;
    z-index: 1;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0
}

.lightbox-container-popup-vidio {
    position: relative;
    max-width: 900px;
    margin: 7% auto;
    display: block;
    padding: 0 3%;
    height: auto;
    z-index: 10
}

@media screen and (max-width:768px) {
    .ddd {
        width: 100%;
        height: 14%;
        border-bottom: 1px solid #fff;
        position: absolute;
        z-index: 99999
    }

    .lightbox-container-popup-vidio {
        margin-top: 10%
    }
}

@media screen and (max-width:414px) {
    .lightbox-container-popup-vidio {
        margin-top: 13%
    }
}

.lightbox-content {
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, .7);
    box-shadow: 0 1px 6px rgba(0, 0, 0, .7)
}

.lightbox-close {
    background: 0 0;
    position: absolute;
    font-weight: 300;
    font-size: 12px;
    display: block;
    border: none;
    color: #fff;
    top: -22px;
    right: 3%
}

.video-container-popup-vidio {
    padding-bottom: 56.25%;
    position: relative;
    padding-top: 30px;
    overflow: hidden;
    height: 0
}

.video-container-popup-vidio embed,
.video-container-popup-vidio iframe,
.video-container-popup-vidio object {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0
}

#container-popup-vidio {
    max-width: 300px;
    height: auto;
    width: 300px;
    margin: 0 auto
}

.payment i {
    margin-top: 120px;
    color: #fff;
    font-size: 50px
}

.vidio-popup-part {
    width: 300px;
    height: 350px
}

.text-01 p {
    color: #a7a7a7
}

.w3-large span {
    font-size: 10px;
    text-align: left;
    color: #6a686b
}

.col-md-3-one {
    width: 9%;
    float: left
}

.col-md-6-two {
    width: 82%;
    float: left
}

.col-md-3-three {
    width: 8%;
    float: left
}

.back img,
.nex img {
    background: #ccc;
    width: 50px
}

.nex {
    float: right
}

.nex img {
    margin-right: -16px
}

.back {
    float: left;
    margin-left: -14px
}

.canvas,
.video {
    height: auto;
    left: 0;
    top: 0;
    width: 100%;
    background: #000;
    z-index: 5
}

#over_video {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    top: -178px;
    z-index: 10;
    font-size: 12vw;
    color: #FFF;
    font-family: Verdana, Arial, Helvetica, sans-serif
}

ul.bann-icon {
    height: 0
}

.button.bt.btn-warning {
    margin-top: -10px !important
}

.video {
    width: 100px;
    float: left
}

.like-icon {
    float: right;
    margin-right: 40%
}

.like-icon img {
    position: relative;
    top: -162px;
    left: 189px;
    width: 32px
}

.creat-icon {
    width: 50%;
    position: relative;
    top: 44%
}

.creat-icon img {
    position: relative;
    top: -279px;
    left: 51%;
    width: 32px;
    float: left
}

.new-tidingo h3 {
    text-align: left;
    padding-bottom: 0;
    color: #fef200
}

.log-new-01 {
    background: #fef200;
    font-size: 20px;
    color: #000;
    font-family: Ramabhadra, sans-serif;
    width: 100% !important;
    margin-bottom: 50px;
    float: left;
    padding: 15px;
    text-align: center
}

.ch,
h4.modal-title {
    color: var(--text-secondary);
}

.form-label {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.dt {
    padding-left: 0 !important
}

.ch {
    padding-top: 15px
}

.top-sect button,
.top-sub button {
    padding: 10px;
    background: #fef200;
    border: none;
    width: 100%
}

.top-sub button {
    color: #000
}

.btn-menu,
.btn-menu1 {
    border: 0;
    color: #fffefe;
    background-color: transparent;
    z-index: 1000;
    cursor: pointer
}

#hiddenUpload {
    width: 100%;
    position: absolute;
    cursor: pointer;
    opacity: 0
}

button.ytp-large-play-button.ytp-button {
    display: none !important
}

.vids {
    width: 100% !important;
    height: 100% !important
}

.agile-main,
.first-chlange {
    text-align: center;
    width: 100%
}

.pages-forth {
    position: relative !important
}

.btn-menu {
    display: block;
    width: 40px;
    height: 25px;
    position: absolute;
    top: 20px;
    left: 15px
}

.btn-menu1 {
    display: block;
    width: 30px;
    position: absolute;
    top: 12px;
    left: 60px
}

.btn-menu:focus {
    outline: #E0AE19 dotted 1px
}

.show_menu .btn-menu:focus {
    outline: 0
}

.btn-menu .text {
    display: block;
    text-indent: 150%;
    white-space: nowrap;
    overflow: hidden
}

.btn-menu .bar,
.btn-menu .bar:after,
.btn-menu .bar:before {
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #fffbfb;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.btn-menu .bar {
    top: 10px;
    left: 0
}

.btn-menu .bar:before {
    position: absolute;
    content: '';
    top: 10px;
    left: 0
}

.btn-menu .bar:after {
    position: absolute;
    content: '';
    top: -10px;
    left: 0
}

.show .btn-menu .bar {
    background-color: transparent
}

.show .btn-menu .bar:before {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.show .btn-menu .bar:after {
    z-index: 3;
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.overlay {
    width: 0;
    height: 600px;
    overflow: hidden;
    position: fixed;
    top: 60px;
    left: 0;
    transition: width .3s ease-in;
    background-color: #0286a2;
    z-index: 2
}

.show .overlay {
    width: 300px;
    height: 600px;
    position: fixed
}

.slct {
    background-color: #4f5259;
    color: #fff;
}

nav ul {
    list-style-type: none;
    position: absolute;
    left: 50px;
    opacity: 0;
    transform: translateX(100px);
    transition: all .3s .2s ease-out
}

.show nav ul {
    opacity: 1;
    transform: translateX(0)
}

nav a {
    display: block;
    width: 200px;
    line-height: 42px;
    color: #fff;
    font-family: conthrax-sb, Arial, Helvetica, sans-serif;
    text-align: left
}

.content {
    height: 100%;
    transition: all .7s ease-out
}

.show .content {
    background-color: #000;
    opacity: 0
}

.tab-butt,
.tap {
    background: #fef200
}

.centered-content {
    width: 500px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid green
}

.read-more .prompt,
.tab-butt,
.tap {
    width: 100%;
    text-align: center
}

#Home {
    position: relative !important
}

@media (max-width:375px) {
    #Home {
        position: relative !important;
        overflow: hidden
    }

    #over_video {
        width: 100%;
        height: 100%;
        text-align: center;
        top: 14px;
        z-index: 10;
        font-size: 12vw;
        color: #FFF;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        margin-top: 20%
    }

    .logo-main {
        text-align: center;
        margin-top: 0
    }
}

.tab-butt {
    padding: 17px;
    margin: 0 auto;
    color: #000
}

.w3-bar {
    margin: 0;
    padding: 0
}

.read-more .prompt {
    display: block !important;
    position: absolute;
    bottom: 0;
    left: 0;
    outline: 0 !important;
    margin: 0;
    padding-top: 21px;
    padding-bottom: 18px
}

.w3-bar-main {
    position: relative;
    top: 398px
}

.tap {
    padding: 18px;
    margin: 0 auto;
    color: #000;
    font-weight: 600;
    font-size: 20px;
    float: left
}

.w3-large img {
    margin-top: 10px;
    padding-bottom: 10px;
    width: 50px
}

.psw {
    float: right;
    padding-top: 16px
}

.collection-main,
.collection-main-01 {
    padding: 15px;
    overflow: auto
}

.collection-main::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5
}

.collection-main::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #00b2d9
}

.collection-main-01 {
    height: 500px
}

.collection-main-01::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5
}

.collection-main-01::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #00b2d9
}

.selectize-dropdown-content {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    color: #000
}

.selectize-control.single .selectize-input {
    background-color: #0286a2 !important;
    background-image: -webkit-linear-gradient(top, #0286a2, #0286a2);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0286a2), to(#0286a2));
    background-image: linear-gradient(to bottom, #0286a2, #0286a2) !important;
    color: #fff;
    border: none;
    padding: 0;
    height: 16px
}

.form-group {
    margin-bottom: 15px;
    padding-top: 3px
}

.from-section-02 {
    padding: 12px 16px 16px
}

.creat-icon-01 {
    width: 50%;
    position: relative;
    top: 137%
}

.creat-icon-01 img {
    position: relative;
    top: -279px;
    left: 44%;
    width: 32px;
    float: left
}

.like-icon-01 img {
    position: relative;
    top: 117px;
    left: 189px;
    width: 32px
}

#playme-01 {
    position: absolute;
    left: 48%;
    font-weight: 300;
    border: none;
    color: #fff;
    padding: 10px 15px;
    display: inline-block;
    font-size: 32px;
    margin: 70px 0 0
}

.has-toggle-input label,
.has-toggle-input.radio label {
    display: block;
    float: left;
    padding: 10px 18px !important;
    margin: auto auto auto -1px;
    background: #f4f4f4;
    color: #444;
    border: 1px solid #d0d0d0;
    line-height: normal;
    overflow: hidden;
    cursor: pointer
}

.from-section-01 {
    padding: 16px !important
}

.section-two h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: -55px;
    font-family: conthrax-sb
}

.w3-bar-main-01 {
    position: relative;
    top: 170px
}

.log-main-section {
    background-color: #676565d4;
    height: 100vh
}

.ctegry-from-01 {
    height: 39px
}

.loder-main {
    text-align: center;
    margin-top: 18%
}

.loder-main img {
    width: 170px
}

.term {
    padding: 15px;
    margin-top: -45px !important
}

.term span {
    color: #6d6d6d
}

.main-t {
    width: 30px
}

.fade-scale {
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear
}

.fade-scale.in {
    opacity: 1;
    transform: scale(1)
}

.modal-dialog-01 {
    width: 100% !important;
    margin: 0 auto !important;
    height: 100%
}

a[data-toggle=modal] {
    margin: 5px
}

.title {
    color: #757575;
    font-weight: 700
}

.modal {
    text-align: left
}

.modal-content {
    border: none
}

.modal-header {
    border-bottom: 0;
    padding-right: 26px;
    padding-left: 26px;
    padding-bottom: 0
}

.modal-title {
    font-size: 34px
}

.modal-body {
    border-bottom: 0;
    font-size: 15px;
    padding: 5px 26px 10px
}

.modal-body.add_css {
    margin-top: 45px !important
}

.modal-footer {
    border-top: 0;
    padding: 0 26px 26px
}

.btn-default,
.btn-primary {
    border: none;
    border-radius: 2px;
    display: inline-block;
    color: #424242;
    background-color: #FFF;
    text-align: center;
    height: 36px;
    line-height: 36px;
    outline: 0;
    padding: 0 2rem;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    letter-spacing: .5px;
    transition: .2s ease-out
}

.btn-default:hover,
.btn-primary:hover {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .18), 0 4px 15px 0 rgba(0, 0, 0, .15)
}

.btn-default:hover {
    background-color: #FFF
}

.btn-primary {
    color: #FFF;
    background-color: #2980B9
}

.btn-primary:hover {
    background-color: #2980B9
}

footer {
    text-align: center;
    margin: 15px
}

footer h4 {
    font-size: 2.92rem;
    font-weight: 100;
    margin: 1.46rem 0 1.168rem
}

.f-website {
    position: fixed;
    bottom: 0;
    right: 0
}

#input_container,
.glyphicon,
.modal-content {
    position: relative
}

.f-website h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 100;
    padding: 5px 10px;
    font-style: italic;
    color: #EEE;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .98), 2px 2px 0 rgba(0, 0, 0, .96), 3px 3px 0 rgba(0, 0, 0, .94), 4px 4px 0 rgba(0, 0, 0, .92), 5px 5px 0 rgba(0, 0, 0, .9), 6px 6px 0 rgba(0, 0, 0, .88), 7px 7px 0 rgba(0, 0, 0, .86), 8px 8px 0 rgba(0, 0, 0, .84), 9px 9px 0 rgba(0, 0, 0, .82), 10px 10px 0 rgba(0, 0, 0, .8), 11px 11px 0 rgba(0, 0, 0, .78), 12px 12px 0 rgba(0, 0, 0, .76), 13px 13px 0 rgba(0, 0, 0, .74), 14px 14px 0 rgba(0, 0, 0, .72), 15px 15px 0 rgba(0, 0, 0, .7), 16px 16px 0 rgba(0, 0, 0, .68), 17px 17px 0 rgba(0, 0, 0, .66), 18px 18px 0 rgba(0, 0, 0, .64), 19px 19px 0 rgba(0, 0, 0, .62), 20px 20px 0 rgba(0, 0, 0, .6), 21px 21px 0 rgba(0, 0, 0, .58), 22px 22px 0 rgba(0, 0, 0, .56), 23px 23px 0 rgba(0, 0, 0, .54), 24px 24px 0 rgba(0, 0, 0, .52), 25px 25px 0 rgba(0, 0, 0, .5), 26px 26px 0 rgba(0, 0, 0, .48), 27px 27px 0 rgba(0, 0, 0, .46), 28px 28px 0 rgba(0, 0, 0, .44), 29px 29px 0 rgba(0, 0, 0, .42), 30px 30px 0 rgba(0, 0, 0, .4), 31px 31px 0 rgba(0, 0, 0, .38), 32px 32px 0 rgba(0, 0, 0, .36), 33px 33px 0 rgba(0, 0, 0, .34), 34px 34px 0 rgba(0, 0, 0, .32), 35px 35px 0 rgba(0, 0, 0, .3), 36px 36px 0 rgba(0, 0, 0, .28), 37px 37px 0 rgba(0, 0, 0, .26), 38px 38px 0 rgba(0, 0, 0, .24), 39px 39px 0 rgba(0, 0, 0, .22), 40px 40px 0 rgba(0, 0, 0, .2), 41px 41px 0 rgba(0, 0, 0, .18), 42px 42px 0 rgba(0, 0, 0, .16), 43px 43px 0 rgba(0, 0, 0, .14), 44px 44px 0 rgba(0, 0, 0, .12), 45px 45px 0 rgba(0, 0, 0, .1), 46px 46px 0 rgba(0, 0, 0, .08), 47px 47px 0 rgba(0, 0, 0, .06), 48px 48px 0 rgba(0, 0, 0, .04), 50px 50px 0 transparent
}

.modal-dialog {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0
}

div#myModal-login,
div#myModal3,
div#myModal_k_1 {
    padding-left: 0 !important
}

.collection-main-02 {
    padding: 15px;
    overflow-x: hidden
}

.collection-main-02::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5
}

.collection-main-02::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: red
}

.main-top {
    padding-top: 60px
}

.form-control-01 {
    display: block;
    width: 100%;
    height: 40px !important;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #fff;
    background-color: #0286a2;
    background-image: none;
    border: 1px solid #2f2f2f;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.btn-chan,
.glyphicon {
    display: inline-block
}

.form-control-feedback i {
    color: #fff;
    margin-top: 12px
}

.input-group-addon-01 {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #191b1c !important;
    border: 1px solid #2f2f2f !important;
    border-radius: 4px
}

.glyphicon {
    top: 1px;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ccc
}

.checkbox span a {
    color: var(--text-secondary);
}

.btn-default-02,
.btn-primary-02 {
    color: #000;
    background-color: #fef200;
    border-color: #fef200;
    font-weight: 600;
    border-radius: 0;
    font-size: 17px
}

.btn-chan {
    padding: 9px 88px;
    margin-bottom: 0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0
}

#myModal15,
#myModal6 {
    padding-left: 0 !important
}

.modal-content {
    min-height: 100%;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 0;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}

#input {
    height: 20px;
    margin: 0;
    padding-right: 30px;
    width: 100%
}

#input_img {
    margin-top: 51px;
    width: 24px;
    height: 24px
}

.col-md-8.dt {
    width: 101.5%
}

#edit-01 {
    float: right;
    margin-top: 6px
}

#edit-01h3 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    font-family: conthrax-sb;
    float: left;
    padding-left: 32px
}

#edit-01a,
.close1 {
    color: #fff
}

.modal-header .close1 {
    margin-top: 7px;
    padding-right: 0
}

button.close1 {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0
}

.close1 {
    float: right;
    font-size: 12px;
    font-weight: 100;
    line-height: 1
}

.selectize-control.single .selectize-input {
    background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#f2f2f2));
    background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: -o-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefefe', endColorstr='#fff2f2f2', GradientType=0);
    -webkit-box-shadow: 0 1px 0 #505152, inset 0 1px 0 #505152 !important;
    box-shadow: 0 1px 0 #505152, inset 0 1px 0 #505152 !important
}

.cret-01 {
    float: left;
    color: #fef200;
    margin: 46px 10px 12px;
    font-weight: 700;
    width: 112px
}

.sham {
    float: left;
    padding-left: 16px
}

.tab-butt-new,
.tab-butt-new1 {
    background: 0 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
    font-size: 19px;
    padding: 18px
}

.tab-butt-new1 {
    color: #fff
}

.tab-butt-new {
    color: #fff !important
}

.container.buttion {
    width: 1203px
}

.tab-butt-new1:focus,
.tab-butt-new1:hover,
.tab-butt-new:focus,
.tab-butt-new:hover {
    background: #fef200
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.ddd {
    width: 100%;
    height: 14%;
    border-bottom: 1px solid #fff;
    position: absolute;
    z-index: 99999
}

div#myModal9 {
    overflow: scroll
}

.form-check {
    margin-left: 16px !important
}

.loader_center_burst {
    position: relative;
    width: 100%;
    height: 1px;
    background: transparent;
    overflow: hidden;
}

.loader_center_burst::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #00b2d9 0%, #00b2d9 50%, #00b2d9 100%);
    animation: expandShrink .5s infinite ease-in-out;
}

@keyframes expandShrink {
    0% {
        width: 0%;
        left: 50%;
        opacity: 1;
    }

    50% {
        width: 100%;
        left: 0%;
        opacity: 1;
    }

    100% {
        width: 0%;
        left: 50%;
        opacity: 0;
    }
}