/* products-headline */
.products-headline {
    margin-bottom: 45px;
    text-align: center;
}
.products-headline .title-1 {
    font-weight: bold;
    font-size: 32px;
    color: var(--darkBlue);
    margin-bottom: 15px;
}
.products-headline .title-2 {
    margin: 0 auto;
    font-size: 16px;
    color: var(--lightBlue);
    max-width: 700px;
}
/* ----------------------------------- */

div#hostgate-plan-a {
    padding-bottom: 60px;
    height: 100%;
    width: 100%;
    line-height: 18px;
    font-size: 14px;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}

#hostgate-plan-a .alert {
    margin-top: 70px;
    padding: 15px;
}

#hostgate-plan-a .price-table-container {
    margin-bottom: 45px;
}

/* price-table */
#hostgate-plan-a .price-table {
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 8px;
    border: 1px solid var(--primary-shadow);
    box-shadow: -4px 4px 0 var(--primary-shadow);
    text-align: center;
}

/* popular-plan */
#hostgate-plan-a .price-table.popular-plan {
    position: relative;
}

#hostgate-plan-a .price-table.popular-plan::after {
    position: absolute;
    content: '';
    right: 18px;
    top: 18px;
    width: 44px;
    height: 44px;
    background-image: url('../img/trending.png');
    background-size: 26px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    z-index: 2;
    background-color: #fff;
}

#hostgate-plan-a .price-table.popular-plan::before {
    position: absolute;
    content: '';
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: conic-gradient(#fd004c,
            #fe9000,
            #fff020,
            #3edf4b,
            #3363ff,
            #b102b7,
            #fd004c);
    animation: spin 1.5s infinite linear;
    border-radius: 50%;
    z-index: 1;
}

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

/* plan-title */
#hostgate-plan-a .price-table .plan-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--darkBlue);
    margin-bottom: 35px;
}

/* plan-sub */
#hostgate-plan-a .price-table .plan-sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--lightBlue);
}

/* plan-price */
#hostgate-plan-a .price-table .plan-price span {
    font-size: 26px;
    font-weight: 900;
    color: var(--darkBlue);
}

#hostgate-plan-a .price-table .plan-price {
    font-size: 18px;
    font-weight: 500;
}

#hostgate-plan-a .price-table .plan-price-sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--lightBlue);
}

#hostgate-plan-a .price-table .plan-price span.text {
    font-size: 20px;
    font-weight: 900;
    color: var(--darkBlue);
}

/* hr */
#hostgate-plan-a .price-table hr {
    border-color: var(--primary-shadow);
    border-width: 1px;
}

/* fea-sec */
#hostgate-plan-a .price-table .fea-sec {
    margin-top: 45px;
}

/* fea-title */
#hostgate-plan-a .price-table .fea-sec .fea-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--darkBlue);
    margin-bottom: 20px;
}

/* item */
#hostgate-plan-a .price-table .fea-sec>div {
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--darkBlue);
}

#hostgate-plan-a .price-table .fea-sec>div:not(last-of-type) {
    margin-bottom: 10px
}

#hostgate-plan-a .price-table .fea-sec>div img {
    width: 16px;
}

/* float-box */
#hostgate-plan-a .price-table .fea-sec .item .float-box {
    position: absolute;
    top: 2px;
    right: 0;
    width: 18px;
    height: 18px;
}

#hostgate-plan-a .price-table .fea-sec .item .float-box::before {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    content: '?';
    right: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background-color: var(--primary-shadow);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    transition: all .15s cubic-bezier(0.215, 0.610, 0.355, 1);
}

#hostgate-plan-a .price-table .fea-sec .item .float-box::after {
    position: absolute;
    content: attr(data-text);
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    width: 260px;
    background-color: var(--light);
    box-shadow: -4px 4px 0 var(--primary-shadow);
    white-space: normal;
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--lightBlue);
    border: 1px solid var(--primary-shadow);
    border-radius: 4px;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    transition: all .15s cubic-bezier(0.215, 0.610, 0.355, 1);
    text-align: left;
}

#hostgate-plan-a .price-table .fea-sec .item .float-box:hover::after {
    visibility: visible;
    opacity: 1;
}

/* se-footer */
#hostgate-plan-a .se-footer-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--darkBlue);
}

#hostgate-plan-a .se-footer .line .icon {
    min-width: 16px;
    width: 16px;
}

#hostgate-plan-a .se-footer .line .text {
    font-size: 14px;
    font-weight: 500;
    color: var(--darkBlue);
}

/* Sidebar */
html, body {
    overflow-x: hidden;
}

.row-product-selection {
    position: relative;
    left: 0;
    -webkit-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

.product-selection-sidebar {
    position: absolute;
    top: 0;
    left: -300px;
    width: 300px;
    display: none;
}

#btnShowSidebar {
    margin: 20px 0;
}