﻿.view-body {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container-body {
    margin: 0;
    padding: 0 20vh;
    background-color: #e6e6e6;
    display: flex;
    flex-direction: column;
}

.container-body {
    flex-grow: 1;
    overflow: auto;
}

.container-trial {
    flex-grow: 1;
}

@media (max-width: 1170px) {
    .container-body {
        padding: 0;
    }
}

header {
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
    align-items: center;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: fixed;
    padding-right: 30px;
    padding-left: 30px;
    z-index: 1000;
}
    header img {
        height: 50px;
    }

.container-trial {
    display: flex;
    padding-top: 40px;
}

.right-section {
    background-color: #fff;
    padding: 40px;
    display: flex;
    flex: 1;
}
.left-section {
    display: flex;
    flex-direction: column;
    background-color: #fcfcfc;
    border-right: 1px solid #e0e0e0;
    padding: 40px;
    flex: 2;
}
@media (max-width: 665px) {
    .container-trial {
        flex-direction: column;
    }
}

.title {
    font-size: 26px;
    font-weight: bold;
    color: black;
    margin-top: 10px;
    margin-bottom: 30px;
}
#continue-btn {
    padding: 8px 20px;
    background-color: #0078d4;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 17px;
}
    #continue-btn:hover {
        background-color: #0365b0;
    }

/*  Account only section */
.account-footer {
    border-top: 1px solid #d2d2d2;
    border-bottom: none;
    background-color: #e6e6e6;
    width: 100%;
    padding: 7px 20px 7px 15px;
    font-size: 12px;
}

    .account-footer p {
        margin: 0;
        text-align: right;
        color: #535252 !important;
    }

    .account-footer a {
        color: #535252 !important;
    }
@media (max-width: 1096px) {
    .account-footer {
        background-color: #fcfcfc;
    }
}
@media (max-width: 665px) {
    .account-footer {
        padding-right: 15px;
        padding-left: 15px;
        position: static;
    }

        .account-footer p {
            text-align: center;
        }
}

.social-signup {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}


.divider-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}

.divider {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #e0e0e0;
    }

    .divider:not(:empty)::before {
        margin-right: 0.5em;
    }

    .divider:not(:empty)::after {
        margin-left: 0.5em;
    }

.sign-in-btn {
    background-color: #fff;
    color: black;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
}

.custom-button {
    display: inline-block;
    padding: 12px;
    margin-right: 5px;
    background-color: #fff;
    color: #000;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .custom-button img {
        width: 27px;
        vertical-align: middle;
    }
/*Payment only section*/
.payment-footer {
    display: flex;
    flex-direction: row;
    border-top: 1px solid #d2d2d2;
    border-bottom: none;
    background-color: #e6e6e6;
    width: 100%;
    padding: 7px 20px 7px 15px;
    justify-content: space-between;
    font-size: 12px;
}

    .payment-footer p {
        margin: 0;
        text-align: right;
        color: #535252 !important;
    }

    .payment-footer a {
        color: #535252 !important;
    }

    .payment-footer img {
        height: 15px;
        margin-right: 3px;
    }
@media (max-width: 1096px) {
    .payment-footer {
        background-color: #fcfcfc;
    }
}
@media (max-width: 665px) {
    .payment-footer {
        padding-right: 5px;
        padding-left: 5px;
        flex-direction: column;
        position: static;
    }

        .payment-footer p {
            text-align: center;
        }
}
/*  Summary section */
#subscription-options {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: white;
    width: 130px;
    border: 1px solid #ccc;
}

.subscription-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 5px;
}

.subscription-section {
    position: relative;
}

.plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-div {
    display: flex; /* Make the inner div a flex container */
    align-items: center; /* Align its children vertically */
    cursor: pointer;
}
.summary {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

#trialType {
    font-weight: bold;
    margin-left: 5px;
    margin-right: 2px;
}

.badge {
    color: #4caf50;
    padding: 5px 10px;
    border-radius: 5px;
    border: 2px solid #4caf50;
    background-color: white;
}

.details {
    margin: 20px 0;
}

    .details p {
        margin: 10px 0;
    }

.free-trial-terms ul {
    list-style: none;
    padding: 0;
}

.free-trial-terms li {
    margin-bottom: 10px;
}

.title-summary {
    font-size: 17px;
    font-weight: bold;
    color: black;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #cbcaca;
}

.left {
    display: flex;
    flex-direction: column;
}

.plan-name {
    font-weight: bold;
}

.price {
    color: #707070;
    font-size: 12px;
}

.sub-containter {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cbcaca;
    padding-bottom: 25px;
    margin-bottom: 20px;
}

.sub-content {
    font-weight: 700;
    font-size: 13px;
}

.due-now-container {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 10px;
}

.due-container {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 40px;
}

.terms-div {
    display: flex; /* Make the inner div a flex container */
    align-items: center; /* Align its children vertically */
    font-size: 13px;
}

