body.single {
    color: var(--darkgray);
}

.single .main {
    margin-top: 3rem;
}

.single .content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
}

.single .thumb {
    margin: 0 auto;
    padding: 2rem 0;
    background-color: var(--surface);
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single .thumb img {
    max-width: 100%;
    max-height: 100%;
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .single .main {
        display: flex;
        justify-content: end;
        align-items: start;
        gap: 2.5rem;
    }

    .single .thumb {
        width: 35%;
    }

    .single .content {
        width: 50%;
    }
}

.single .author {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: auto;
}

.single .title {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.25;
}

.single .description {
    font-size: 1.125rem;
    line-height: 1.666;
    font-weight: 300;
}

.single .label {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.single .price__value {
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
}

.single .finition {
    margin: 1rem 0;
    font-size: 1.125rem;
    line-height: 1.666;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.single .finition__title {
    font-weight: 500;
}

.single .finition__desc {
    font-weight: 300;
}

.single .radio-group {
    margin-left: 0.8rem;
}

.single .radio {
    flex-shrink: 0;
}

.single .form-control {
    color: var(--primary);
    padding-right: 3rem;
}

.single .frame {
    margin: 2rem 0 1.5rem 4rem;
    display: none;
}

.single .frame_title {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.single .frames_list {
    margin: 2rem 0;
    display: flex;
    gap: 4rem;
}

.single .frame_img {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.single .custom-helper {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.66;
}


/* Style the Image Used to Trigger the Modal */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}

/* The Modal (background) */
.single .modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 99999999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    color: black;
}

.single .modal-overlay {
    content: '';
    background-color: rgb(250, 250, 250);
    background-color: rgba(250, 250, 250, 0.6);
    filter: blur(12px);
    -webkit-filter: blur(12px);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Modal Content (Image) */
.single .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}


/* Add Animation - Zoom in the Modal */
.single .modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.single .close {
    opacity: .5;
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.single .close:hover,
.single .close:focus {
    opacity: 1;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .single .modal-content {
        width: 100%;
    }
}