/*
/=============================================================================\
 ## SplitRGB page
\=============================================================================/ 
*/
#site-header #aesweets-logo a,
#aesweets-logo-footer a {
    color: var(--rgb-split-color);
}

#header-bottom-row {
    background-color: var(--rgb-split-color);
}

#page-path ul li {
    color: #fff;
}

#page-path ul li a,
#sub-menu ul li a {
    color: #fff;
}

#page-path ul li a:hover,
#sub-menu ul li a:hover {
    color: #eee;
}

body .button-round {
    border-radius: 28px;
    margin-left: 10px;
    margin-right: 10px;
}

body a.button-hot {
    background-color: #38DBA3;
}

body a.button-hot:hover {
    color: #fff;
    background-color: #2c9e77;
}

/* #FF7575 */

h2 {
    margin-bottom: 0;
}

header {
    padding-top: 200px;
    font-size: 18px;
    text-align: center;
    /* color: #fff; */
    /* background-color: #FF7575; */
}

header h1 {
    margin-bottom: 0;
    /* color: #fff; */
}

header iframe {
    padding-top: 20px;
}

/* header .color-text {
    color: #fff;
} */

.product-button-main {
    display: inline-block;
    padding: 18px 25px;
    background-color: #fff;
    color: #FF7575;
    font-size: 20px;
    font-weight: bold;
    border-radius: 40px;
    cursor: pointer;
    border: solid 2px transparent;
}

.product-preview-container {
    /* background-color: #FF7575; */
    padding-top: 50px;
    text-align: center;
    margin-bottom: 100px;
}

.product-preview-container .product-workflow-video {
    margin-bottom: 40px;
}


.product-additional-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.left-additional-info {
    flex: 0 0 480px;
    overflow: hidden;
}

.right-additional-info {
    flex: 0 1 480px;
    padding-left: 30px;
}

.product-additional-info h2 {
    margin-bottom: 20px;
}

.product-additional-info p {
    margin-bottom: 20px;
}

.product-workflow-video {
    max-width: 100%;
    /* margin-top: -2px;
    margin-bottom: -1px; */
}

.product-additional-info-ctab-container {
    display: flex;
}

.product-additional-info-ctab-container .button-round:first-of-type {
    margin-left: 0;
}

.product-button-main:focus-visible,
:focus {
    outline-style: none;
    border-color: #F5CD84;
}

.product-button-main:hover,
.product-button-main.subscribed {
    background-color: #F5CD84;
    color: #4C285B;
    transition: all 0.3s ease-out;
}

.product-ctab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;

}

.product-ctab-container a {
    flex: 0 0 auto;
}

.loader {
    /*display: none;*/
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    border: 6px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border-top: 6px solid #fff;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 1s linear infinite;
    /* Safari */
    animation: spin 1s linear infinite;
}

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

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

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

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