:root {
    --blue: #176FC1;
    --white: #ffffff;
    --black: #111111;
    --red: #CE0D40;
    --lightblue: #d0f2ff;
    --pink: #ffd9e3;
    --lightgreen: #d4ffdb;
    --lightred: #ffe4e2;
    --lightgray: #f1f1f1;
    --gray: #b0bac9;
}

body {
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    background: #FBFBFB;
}

.user-guide {
    background: var(--white);
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
    border: 1px solid var(--gray);
}

.user-guide h1 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin: 0px 0 22px 0;
}

.pdf-guide {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
}

.pdf-guide .pdf-content h2 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.pdf-guide .pdf-content {
    margin: 10px;
    box-shadow: 0px 3px 12px #00000029;
    border-radius: 12px;
    background: var(--white);
    padding: 20px;
}

.pdf-guide .pdf-content a {
    color: var(--black);
}

.pdf-guide .pdf-content .pdf__img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.modal-title{
font-weight:600;
}
.center_block p {
    text-align: center;
    margin-top: 19px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #4977dd;
}

.center_block p:hover {
    text-decoration: underline;
}

.center_block p span {
    padding-left: 8px;
    color: #4977dd;
}

.eye__img {
    max-width: 100%;
}

.modal_box .modal-header .close {
    margin-top: -4px;
    background: transparent;
    opacity: 1;
    width: 23px;
    font-size: 34px;
    color: var(--black);
}

.modal_box .modal-header {
    border-bottom: 0;
}

.modal_box .modal-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
    justify-content: space-evenly;
}

.modal_box .modal-body .pdf__img {
    width: 72px;
}

.modal_box .modal-body h2 {
    font-size: 18px;
}

.video-content-ml_2 {
    margin-left: 20px;

}

.video-content-ml_3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    gap: 20px;
    overflow: unset;
    border-radius: 0;
}

.video-item p {
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    margin-top: 7px;
}

/* video */
.video-guide {
    margin-top: 25px;
    display: flex;

}

.video-content {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.video-content h2 {
    font-size: 18px;
    text-align: left;
    color: var(--black);
    font-weight: 600;
    margin-top: 10px;
}

.video-content .video {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1.7;
    outline: 0;
    border: 0;
    border-radius: 7px;
    object-fit: cover;
}

.video-content--edit .video {
    width: 279px;
}

/* video */

@media (max-width: 992px) {
    .pdf-guide .pdf-content {
        flex-basis: 40%;
    }
}

@media(max-width:768px) {
    .pdf-guide {
        justify-content: center;
    }

    .video-guide {
        flex-wrap: wrap;
    }

    .video-content-ml_2 {
        margin-left: 0;
    }

    .video-content .video {
        max-width: 100%;
    }

    .pdf-guide .pdf-content {
        flex-basis: 65%;
        ;
    }

}



@media(min-width:992px) {
    .pdf-guide .pdf-content {
        flex-basis: 23%;
    }
}