.content .spacer-title {
    margin-bottom: 0px;
    color: var(--white-color);
    border-radius: 4px;
    padding: 5px;
    font-size: 20px;
    background-color: #0f4a97;
}
.content .spacer-title .counter {
    width: 26px;
    height: 26px;
    border: 1px solid var(--border-color-2);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    background-color: var(--white-color);
    color: var(--info-color-1);
    font-weight: 600;
    font-size: 14px;
}
/* .content form {
    background-color: var(--light-color-3);
    padding: 15px 20px;
    border-radius: 8px;
} */
.content input, .content textarea {
    border-radius: 4px;
    border: 0px;
    outline: 0px;
    padding: 10px 15px;
    box-shadow: 0px 0px 6px rgb(228, 228, 228);
    background-color: var(--white-color);
}

.content .radio-list {
    box-shadow: 0px 0px 6px rgb(228, 228, 228);
    padding: 20px 10px;
    border-radius: 4px;
}
.content .radio-list li {
    flex: 0 0 calc(50% - 20px);
    margin: 0px 10px;
    position: relative;
}
.content .radio-list li input {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
}
.content .radio-list li label {
    border-radius: 8px;
    margin-bottom: 0px;
    transition: all 200ms;
    cursor: pointer;
}
.content .radio-list li input:checked + label {
    border-color: var(--info-color-1);
}
.content .radio-list li label img {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
}
.content .radio-list li label strong {
    font-weight: 600;
}
.content .radio-list li label .title{
    font-size: 18px;
}
.content .radio-list li label p {
    font-size: 14px;
    color: var(--secondary-color-2);
}
.content .radio-list li label .circle {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    border: 1px solid #0f4a97;
    transition: all 200ms;
}
.content .radio-list li input:checked + label .circle {
    background-color: #0f4a97;
}

.content .info-table p {
    font-size: 14px;
    color: var(--secondary-color-2);
}


.sidebar-section .img-field img {
    width: 100%;
    /* height: 232px; */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.sidebar-section .img-field .text-caption {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 15px;
    color: var(--white-color);
    text-shadow: 0px 0px 12px black;
}
.sidebar-section .img-field .text-caption strong {
    font-size: 24px;
}

.sidebar-content .date-section {
    position: relative;
    flex: 0 0 100%;
    max-width: 100%;
}
.sidebar-content .date-section .field {
    position: relative;
    flex: 0 0 50%;
    cursor: pointer;
}
.sidebar-content .date-section .field input {
    width: 0px;
    height: 0px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.sidebar-content .date-section .field .date-day {
    font-size: 30px;
    font-weight: 600;
}
.sidebar-content .date-section .field i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
    font-size: 14px;
    color: var(--info-color-2);
    transition: all 200ms;
}
.sidebar-content .input-field {
    width: 100%;
    border: 1px solid var(--border-color-1);
    box-shadow: 0 0 6px -5px #dcdcdc;
    margin: 10px 0px;
    border-radius: 8px;
}
.sidebar-content .guest-select input {
    width: 100%;
    padding: 10px 15px;
}
.sidebar-content .guest-select .buttons button {
    background-color: transparent;
    margin: 4px 3px;
    color: var(--dark-color-1);
    outline: 0px;
    transition: all 200ms;
    border-radius: 4px;
    min-width: 30px;
}
.sidebar-content .guest-select .buttons button:hover {
    background-color: var(--dark-color-3-transparent-3);
}

/* RESPONSIVE */
@media only screen and (max-width: 1199px) {
    .sidebar-section .img-field img {
        height: 190px;
    }
}
@media only screen and (max-width: 991px) {
    .sidebar-wrapper {
        margin-bottom: 40px;
    }
    .sidebar-section .img-field img {
        height: 300px;
    }
}
@media only screen and (max-width: 767px) {
    .content .radio-list {
        padding: 10px 10px;
    }
    .content .radio-list li {
        flex: 0 0 100%;
        margin: 10px 0px;
        padding: 15px 10px;
        border-bottom: 1px solid var(--border-color-1);
    }
    .content .radio-list li:last-child {
        border-bottom: 0px;
    }
}
@media only screen and (max-width: 499px) {
    .info-table .title {
        font-size: 15px;
    }
    .content .info-table p {
        font-size: 13px;
    }
    .content .spacer-title {
        padding: 10px 10px;
        font-size: 18px;
    }
    .personal-information label {
        font-size: 14px;
    }
    .content input, .content textarea {
        padding: 7px 14px;
    }

    .sozlesme label {
        font-size: 14px;
    }
}
@media only screen and (max-width: 380px) {
    .sidebar-section .img-field img {
        height: 240px;
    }
}