﻿﻿
.privacy-terms-cont {

}
.privacy-terms-container {
    width: 100%;
    height: 650px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 15px;
    align-items: center;
    padding: 15px;
    overflow-y: scroll;
}

    .privacy-terms-container section > h1 {
        font-size: 20px;
        margin-bottom: 16px;
        color: #000;
    }

    .privacy-terms-container section > p {
        font-size: 15px;
        margin-bottom: 10px;
        color: #696969;
    }

    .privacy-terms-container section a {
        text-decoration: none;
        color: #000;
        font-weight: 600;
        margin: 0 6px;
    }

.privacy-policy-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}


    .privacy-policy-content section h1, h2, h3, h4, h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .privacy-policy-content section p {
        color: #696969;
    }

    .privacy-policy-content section ul {
        margin-left: 50px;
        /* list-style-type:none;*/
    }

    .privacy-policy-content section ol {
        margin-left: 55px;
        list-style-type: square;
        font-size: 15px;
    }

    .privacy-policy-content section ul strong {
        color: #000;
        margin-right: 10px;
    }

    .privacy-policy-content section ul p {
        font-size: 15px;
    }

    .privacy-policy-content section ul li {
        margin-bottom: 8px;
        color: #696969 !important;
    }


.i-agree-wrapper {
    margin-top: 35px;
    padding-top: 55px;
    width: 100%;
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    align-items: center;
    border-top: 1px solid #DCDCDC;
}

    .i-agree-wrapper input[type="checkbox"] {
        height: 15px;
        margin-bottom: 1px;
    }

    .i-agree-wrapper span {
        font-size: 13px;
        color: #000;
        font-weight: 600;
        margin-bottom: -1px;
    }

.i-proceed-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proceed-btn {
    width: 150px;
    padding: 10px;
    background-color: #FFB606;
    font-size: 14px;
    border: none;
    font-weight: 600;
    border-radius: 5px;
}


/* The container */
.custom-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .custom-checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: -5px;
    left: 10px;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.custom-checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.proceed-btn {
    transition: all .2s ease;
}

    .proceed-btn:hover {
        background-color: #e6a405;
    }
