/*** Branding Testing ***/

.branding_testing {
    background-color: #F7F7F7;
    background-color: #FFFFFF;
}

.branding_testing code.primary-section,
.branding_testing pre.primary-section {
    display: block;
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 10px 20px;
    width: max-content;
    width: fit-content;
    color: #d958d9;
    margin-bottom: 30px;
    max-width: 100%;
}


.branding_testing code.primary-section.php,
.branding_testing pre.primary-section.php {
    background-color: #fff7f7;
    color: #a00303;
}


.branding_testing code.primary-section.html,
.branding_testing pre.primary-section.html,
.branding_testing code.primary-section.css,
.branding_testing pre.primary-section.css {
    background-color: #f7f8fe;
    color: #090cbd;
}


.branding_testing a.button.arrow {
    margin-bottom: -20px;
    color: #0044FF;
}

.branding_testing .heading-splitter {
    background-color: #f5f5f5;
    padding: 10px 20px;
    margin-bottom: 40px;
}

.branding_testing p.heading_example {
    color: #7f7f7f;
    letter-spacing: 3px;
    display: block;
    border-bottom: 1px solid #7f7f7f;
    font-size: 13px;
    margin-bottom: 30px;
}

.branding_testing .link-index div {
    margin-bottom: 20px;
    padding-left: 25px;
}

.branding_testing .link-index a.button {
    display: table;
    margin-left: 0;
    margin-right: 0;
    font-size: 17px;
    margin-bottom: 5px;
}

.branding_testing .link-index div a.button {
    font-size: 15px;
}

/** Colors **/
.branding_testing .color-examples {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.branding_testing .color-examples div {
    position: relative;
    height: 100px;
    width: 100px;
    border-radius: var(--global-border-radius);
    border: solid 4px #000;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

/*.branding_testing .color-examples div::after {*/
/*    content: 'Copy background value of this swatch';*/
/*    display: block;*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    background-color: #000000;*/
/*    color: white;*/
/*    font-size: 10px;*/
/*    line-height: 12px;*/
/*    padding: 5px;*/
/*    border-radius: 8px;*/
/*    transition: ease all 0.3s;*/
/*    opacity: 0;*/
/*    height: 0;*/

/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-pack: center;*/
/*    -ms-flex-pack: center;*/
/*    justify-content: center;*/
/*    !*-webkit-box-align: end;*!*/
/*    !*-ms-flex-align: end;*!*/
/*    !*align-items: flex-end;*!*/

/*    border-top-right-radius: 0;*/
/*    border-top-left-radius: 0;*/
/*}*/

.branding_testing .color-examples div:hover::after {
    opacity: 1;
    height: 47px;
}

@media(max-width: 767.98px) {
    .branding_testing .color-examples div::after {
        border-radius: 5px;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }
}

.branding_testing .slick-slider .slick-prev,
.branding_testing .slick-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.branding_testing .slick-slider .slick-prev {
    transform: translateY(-50%) scaleX(-1);
}

/*** Sidebar ***/

.branding_testing .sidebar-icon-panel {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    padding: 40px;
}

.branding_testing .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 375px;
    background-color: #ebedf9;
    padding: 40px;
}
.branding_testing .sidebar {
    display: none;
}
@media(max-width: 1900px) {
    .branding_testing .sidebar {
        display: none;
    }
}