/*
* ========================================
*   Best Times to Publish YouTube Videos
* ========================================
*/
.wcl-best-time-post-video:not(:last-child) {
    margin-bottom: 2rem;
}

.wcl-best-time-post-video .data-wrapper {
    margin-bottom: 25px;
    background-color: #fff;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 1.3rem;
    padding: 2.7rem;
    text-align: center;
}

.wcl-best-time-post-video .data-title {
    margin-bottom: 2rem;
}

.wcl-best-time-post-video .data-subtitle {
    margin-top: 0;
    font-weight: 400;
}

.wcl-best-time-post-video .data-country-choise {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 2rem;
}

.wcl-best-time-post-video .wcl-select-wrapper {
    width: 100%;
    max-width: calc(50% - 10px);
}

.wcl-best-time-post-video .wcl-select-wrapper .wcl-select {
    width: 100%;
}

.wcl-best-time-post-video .wcl-select-wrapper .choices__inner {
    background-color: transparent;
    height: 45px;
    display: flex;
    align-items: center;
}

.wcl-best-time-post-video .wcl-select-wrapper .choices__list {
    text-align: left;
    z-index: 5;
}

.wcl-best-time-post-video .data-submit .btn {
    color: #fff;
    border-radius: 0.5rem;
    letter-spacing: 1px;
    padding: 11px 23px;
    line-height: 16px;
    font-size: 13px;
    height: 3rem;
}

.wcl-best-time-post-video .data-submit .btn:hover {
    color: #DC1E23;
}

/* Time Plan */
.wcl-best-time-post-video .data-time-plan {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1.3rem;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 18px 0 rgb(0 0 0 / 12%);
    overflow: hidden;
    text-align: center;
    opacity: 0;
    height: 0;
    visibility: hidden;
    transition: all .25s ease-in-out;
}

.wcl-best-time-post-video .data-time-plan.show {
    height: fit-content;
    opacity: 1;
    visibility: visible;
    margin-bottom: 25px;
}

.wcl-best-time-post-video .plan-top {
    padding: 2.7rem;
}

.wcl-best-time-post-video .plan-title {
    margin-bottom: 2rem;
}

.wcl-best-time-post-video .plan-user-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 5px;
    font-size: .9rem;
}

.wcl-best-time-post-video .plan-timezone-info {
    font-size: .9rem;
}

.wcl-best-time-post-video hr {
    background: rgba(85, 85, 85, .5);
    width: 100%;
    max-width: 550px;
    margin: 5px auto;
}

.wcl-best-time-post-video .time-line-row {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    justify-content: space-between;
    overflow: auto;
    margin-top: 40px;
    width: 100%;
    scrollbar-color: #bfc7d1 rgba(225, 232, 238, 0.4);
    scrollbar-width: thin;
}

.wcl-best-time-post-video .time-line-row::-webkit-scrollbar {
    height: 4px;
    background-color: #F5F5F5;
    border-radius: 100px;
}

.wcl-best-time-post-video .time-line-row::-webkit-scrollbar-thumb {
    background-color: #BFC7D1;
    border-radius: 100px;
}

.wcl-best-time-post-video .time-line-item {
    flex: 0 0 calc(100% / 7 - 30px);
    max-width: 100%;
    min-width: 90px;
    margin: 0 5px 0 0;
}

.wcl-best-time-post-video .time-line-item:last-child {
    margin-right: 0;
}

.wcl-best-time-post-video .time-line-label {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    padding: 5px 5px;
}

.wcl-best-time-post-video .time-line-variant {
    font-weight: 700;
    font-size: 12px;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: center;
    background-color: rgba(255, 110, 95, .1);
    padding: 5px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    margin-top: 5px;
}

.wcl-best-time-post-video .time-line-variant.filled {
    background-color: rgba(255, 110, 95, .45);
}

.wcl-best-time-post-video .time-line-item:nth-child(even) .time-line-variant {
    background-color: rgba(129, 0, 0, .1);
}

.wcl-best-time-post-video .time-line-item:nth-child(even) .time-line-variant.filled {
    background-color: rgba(129, 0, 0, .45);
}

@media only screen and (max-width: 1440px) {

    .wcl-best-time-post-video .data-wrapper,
    .wcl-best-time-post-video .plan-top {
        padding: 1.5rem;
    }
}

@media only screen and (max-width: 991px) {
    .wcl-best-time-post-video .time-line-item {
        min-width: 110px;
    }

    .wcl-best-time-post-video .time-line-label {
        font-size: 12px;
    }

    .wcl-best-time-post-video .time-line-variant {
        font-size: 16px;
    }
}

@media only screen and (max-width: 576px) {
    .wcl-best-time-post-video .data-country-choise {
        flex-direction: column;
    }

    .wcl-best-time-post-video .wcl-select-wrapper {
        max-width: 100%;
    }
}

.wcl-best-time-post-video .wcl-select-wrapper .dropdown-toggle {
    border: 1px solid #050708;
    background: #fff;
    padding: 1.075rem 2.5rem 1.075rem 1.95rem;
}

.wcl-best-time-video-pblish-error {
    display: none;
    margin-top: 20px;
    color: #DC1E23;
}

.wcl-best-time-video-pblish-error.active {
    display: block;
}