:root {
    --blue: #0C1E33;
    --green: #B4D9D7;
    --gold: #CA9B5E;
    --gray: #808080;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
label,
input,
li,
ul,
ol,
div {
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

::selection {
    background: #CA9B5E;
    /* WebKit/Blink Browsers */
    color: #fff;
}

::-moz-selection {
    background: #CA9B5E;
    /* Gecko Browsers */
    color: #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type="checkbox"] {
    accent-color: #000;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    /* border-color: var(--gray); */
    /* box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.075) inset, 2px 2px 5px rgba(128, 128, 128, 0.6); */
    outline: none !important;
}

div:focus {
    outline: none !important;
}

a {
    transition: all 0.25s;
    color: #000;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

h2 {
    font-size: 28px;
    line-height: 32px;
    font-weight: bold;
    margin: 0 0 30px 0;
}

.bg {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.clear {
    clear: both;
}

.mc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.wrapper .back {
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.wrapper .back i {
    margin-right: 12px;
    font-size: 18px;
}

/* BUTTONS */

.btn {
    border: 1px solid #000;
    border-radius: 0;
    padding: 8px 40px;
    text-transform: uppercase;
    font-size: 17px;
    text-decoration: none;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn.btn-primary:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    outline: none;
}

.btn.btn-primary:focus {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    outline: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: #000;
    border-color: #000;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #fff;
    color: #000 !important;
    border: 1px solid #fff;
}

/* DESKTOP HEADER */

.menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 99px;
    border: 1px solid #000;
    width: 22px;
    height: 22px;
    margin-right: 6px;
    transition: all 0.25s;
    font-size: 14px;
}

a:hover .menu-icon {
    border: 1px solid #fff;
}

.desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
}

.desktop-header .align-center {
    max-width: 1100px;
    margin: 0 auto;
}

.desktop-header .member-status {
    background-color: #ccc;
}

.desktop-header .member-status .align-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.desktop-header .member-status span {
    font-weight: 600;
    font-size: 12px;
}

.desktop-header .member-status a {
    color: #555;
    font-size: 12px;
}

.desktop-header .member-status a:hover {
    color: #000;
}

.desktop-header .header {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.desktop-header .header .buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.desktop-header .header .buttons a:hover .menu-icon {
    border: 1px solid #000;
}

.desktop-header .header .buttons .profile {
    text-transform: uppercase;
}

.desktop-header .header .buttons .profile i {
    font-weight: 300;
}

.desktop-header .header img {
    width: 280px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.desktop-header .header #openSearch {
    background: transparent;
    display: flex;
    align-items: center;
    border: none;
    outline: none;
}

.desktop-header .header #openSearch i {
    font-size: 16px;
    margin-right: 8px;
}

.desktop-header nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.desktop-header nav a {
    display: block;
    padding: 12px 20px;
    font-weight: 600;
}

.desktop-header nav a:hover {
    background-color: #000;
    color: #fff;
}

.desktop-header nav a i {
    font-weight: 300;
}

/* START PAGE */

#startPage {
    height: 100vh;
}

#startPage .layer {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3)
}

#startPage .mc {
    height: 100vh;
}

#startPage .loginContent {
    max-width: 494px;
}

#startPage .loginContent p {
    font-size: 17px;
    color: #fff;
    margin: 30px 0;
}

#startPage .loginContent .btn {
    width: 250px;
}

#startPage .loginContent .btn-secondary {
    border-color: #fff;
    color: #fff;
}

/* MAIN & PRODUCT LIST */

#mainPage {
    max-width: 1100px;
    margin: 60px auto 0;
}

#mainPage .member-status {
    background: linear-gradient(90deg, rgba(210, 210, 210, 1) 0%, rgba(231, 231, 231, 1) 50%, rgba(210, 210, 210, 1) 100%);
    padding: 20px;
    margin: 0;
    width: 100%;
    position: relative;
}

#mainPage .member-status .title {
    text-transform: uppercase;
}

#mainPage .member-status i {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
    font-size: 28px;
    color: #000;
}

#mainPage .member-status .infos {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#mainPage .member-status .infos h2 {
    margin: 20px 0 8px;
    font-size: 24px;
}

#mainPage .member-status .infos div:nth-child(2) {
    text-align: right;
}

#mainPage .member-status .infos p {
    margin: 0;
}

#mainPage .member-status .progress {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    margin: 20px 0;
}

#mainPage .member-status .progress .progress-bar {
    height: 3px;
    background-color: #000;
    border-radius: 10px;
}

#mainPage .member-status h5 {
    font-size: 15px;
    font-weight: 600;
}

#mainPage .member-status a {
    display: block;
    margin: 0 auto;
    text-align: center;
    color: var(--gray);
}

#mainPage .member-status .btn.btn-primary {
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 450px;
    color: white;
}

#mainPage .member-status .btn.btn-primary:hover {
    color: #000;
}

#mainPage .wrapper {
    margin: 20px 0;
}

#mainPage .wrapper .title {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#mainPage .wrapper .title h2 {
    font-size: 24px;
    margin: 0;
}

#mainPage .wrapper .title a {
    font-size: 14px;
}

.main-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.main-products .main-product {
    width: 45%;
    max-width: 260px;
    background: #fff;
    position: relative;
}

.main-products .main-product .icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 8px;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 99px;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.main-products .main-product img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.main-products .main-product h5 {
    margin: 12px 0;
    font-size: 16px;
    font-weight: 700;
}

.main-products .main-product p {
    margin: 0;
    font-size: 13px;
}

.picture {
    position: relative;
    margin-top: 20px;
    width: 100%;
    height: 400px;
}

.picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.picture .details {
    position: absolute;
    text-align: center;
    color: #fff;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    width: 100%;
}

.picture .details h5 a {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.picture .details p {
    margin: 0;
}

/* PRODUCT LIST */

#product-list {
    max-width: 1100px;
    margin: 0 auto;
}

#product-list .wrapper h1 {
    margin: 20px 0;
    font-size: 32px;
    font-weight: 700;
}

#product-list .wrapper .description {
    margin: 20px 0;
}

#product-list .filters {
    margin: 20px 0 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
}

#product-list .filters .filter {
    white-space: nowrap;
}

#product-list .dropdown.bootstrap-select.show-tick.filter {
    width: fit-content;
}

#product-list .btn.dropdown-toggle {
    background-color: #fff;
    color: #000;
    font-size: 14px;
    border: none;
    padding: 0;
    width: fit-content;
    text-transform: none;
    font-weight: 600;
}

#product-list .btn.dropdown-toggle:focus {
    border: none;
    box-shadow: none;
}

.dropdown-toggle::after {
    margin-left: 8px;
}

#product-list .dropdown-menu {
    padding: 0;
    margin: 10px 0;
}

#product-list .dropdown-menu a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    text-transform: none;
    font-weight: 600;
    transition: all 0.25s;
}

#product-list .dropdown-menu a:hover {
    background-color: #888;
    color: #fff;
}

#product-list .wrapper .pagination {
    margin: 60px auto 20px;
    text-align: center;
    width: fit-content;
}

#product-list .wrapper .pagination a {
    padding: 12px;
    font-size: 16px;
    color: var(--gray);
}

#product-list .wrapper .pagination a:hover {
    color: #000;
}

#product-list .wrapper .pagination .active {
    color: #000;
    font-weight: 600;
}

.links,
.links a {
    color: var(--gray);
}

.links {
    margin: 20px 0;
}

/* PRODUCT */

#product {
    max-width: 1100px;
    margin: 0 auto;
}

#product .product {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#product .product-image {
    position: relative;
    width: fit-content;
    margin: 0 auto 20px;
}

#product .product-image span {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    text-transform: uppercase;
    background-color: #000;
    color: #fff;
    font-size: 12px;
}

#product img {
    width: 100%;
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
}

#product h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 40px 0 20px;
}

#product .name {
    margin: 0 0 20px 0;
}

#product .prices .price {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 4px 0;
    font-size: 16px;
}

#product .details {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px auto;
    gap: 8px;
}

#product .details .detail {
    width: 46%;
    max-width: 200px;
    background: #fff;
}

#product .details .detail .title {
    display: block;
    font-weight: 400;
}

#product .details .detail .value {
    display: block;
    font-weight: 600;
}

#product .documents {
    margin: 20px 0;
}

#product .documents .document {
    margin: 16px 0;
    padding: 8px 12px;
    color: var(--gray);
    border: 2px solid var(--gray);
    position: relative;
    cursor: pointer;
    transition: all 0.25s;
}

#product .documents .document i {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 16px;
}

#product .documents .document:hover {
    color: #fff;
    background-color: var(--gray);
}

#product .product-buttons {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
}

#product .product-buttons .btn-primary,
#product .product-buttons .btn-secondary {
    font-size: 14px;
    padding: 8px 16px;
    width: 45%;
    max-width: 300px;
}

/* PRODUCT MODALS*/

#sidebar-offer, #sidebar-reservation {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9999;
    background: #fff;
    color: #000;
    transition: all 0.3s;
    padding: 0 20px;
}

#sidebar-offer.active, #sidebar-reservation.active {
    right: 0;
}

#sidebar-offer .dismiss-offer, #sidebar-reservation .dismiss-reservation {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    position: absolute;
    top: 15px;
    right: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 24px;
    z-index: 99;
}

#sidebar-offer .dismiss-offer:hover, #sidebar-reservation .dismiss-reservation:hover {
    background: #000;
    color: #fff;
}

#sidebar-offer h2, #sidebar-reservation h2 {
    font-size: 26px;
    margin: 40px 0 20px;
}

#sidebar-offer .content, #sidebar-reservation .content {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

#sidebar-offer .content .details, #sidebar-reservation .content .details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px auto;
    width: 100%;
    max-width: 500px;
}

#sidebar-offer .content .details img, #sidebar-reservation .content .details img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-right: 16px;
}

#sidebar-offer .content .details .detail, #sidebar-reservation .content .details .detail {
    display: flex;
    height: 130px;
    flex-direction: column;
    justify-content: space-between;
}

#sidebar-offer .content .details h5, #sidebar-reservation .content .details h5 {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

#sidebar-offer .content .details .detail .value, #sidebar-reservation .content .details .detail .value {
    border: 2px solid #aaa;
}

#sidebar-offer .content .details .detail .value input, #sidebar-reservation .content .details .detail .value input {
    width: 83%;
    margin-right: 8px;
    border: none;
    padding: 8px 16px;
    font-size: 16px;
    color: var(--gray);
}

#sidebar-offer .content .prices, #sidebar-reservation .content .prices {
    margin: 20px 0;
}

.request .content .prices .price, #sidebar-reservation .content .prices .price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sidebar-offer .content .prices .price:nth-child(2), #sidebar-reservation .content .prices .price:nth-child(2) {
    margin: 8px 0;
    font-weight: 600;
    font-size: 16px;
}

#sidebar-offer .content .btn.btn-primary, #sidebar-reservation .content .btn.btn-primary {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
}

#sidebar-offer .content .btn.btn-primary:disabled, #sidebar-reservation .content .btn.btn-primary:disabled {
    background-color: #fff;
    color: #aaa;
}

/* RESERVATIONS */

#reservations {
    max-width: 1100px;
    margin: 0 auto;
}

#reservations h1 {
    margin: 20px 0;
    font-size: 32px;
    font-weight: 700;
}

#reservations .reservations {
    margin: 20px 0;
}

#reservations .reservations .reservation {
    width: 100%;
    position: relative;
}

#reservations .reservations .reservation .fader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

#reservations .reservations .reservation .fader.active {
    display: none;
}

#reservations .reservations .reservation .details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 16px 0;
}

#reservations .reservations .reservation .details img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-right: 16px;
}

#reservations .reservations .reservation .details .icons {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
}

#reservations input {
    width: 24px;
    height: 24px;
    margin: 0;
}

#reservations input:checked {
    background-color: #000;
}

#reservations .reservations .reservation .details button {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    outline: none;
    border: none;
    background-color: transparent;
}

#reservations .reservations .reservation .details .pencil {
    width: 22px;
    height: 22px;
    padding: 2px;
    margin: 0;
}

#reservations .reservations .reservation .details button:nth-child(2) i {
    font-size: 26px;
}

#reservations .reservations .reservation .details h5 {
    font-size: 14px;
    font-weight: 600;
    width: 90%;
}

#reservations .reservations .reservation .details span {
    display: block;
    font-size: 13px;
    color: var(--gray);
}

#reservations .prices .price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#reservations .prices.sum .price {
    font-size: 17px;
}

#reservations .prices .price:nth-child(2) {
    margin: 8px 0;
    font-weight: 600;
}

#reservations .checklist {
    text-align: right;
    margin: 20px 0;
}

#reservations .checklist .item {
    margin: 12px 0;
}

#reservations .checklist .item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
}

#reservations .checklist input {
    margin-left: 36px;
}

#reservations .checklist hr {
    border: 1px solid var(--gray);
}

#reservations .btn-primary {
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
}

/* OFFERS */

#offers {
    max-width: 1100px;
    margin: 0 auto;
}

#offers h1 {
    margin: 20px 0;
    font-size: 32px;
    font-weight: 700;
}

#offers .offer {
    width: 100%;
    border: 1px solid var(--gray);
    margin: 20px 0;
}

#offers .offer .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background-color: #000;
    color: #fff;
}

#offers .offer .content {
    padding: 8px;
    position: relative;
}

#offers .offer .content a {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 24px;
    outline: none;
    border: none;
    background-color: transparent;
}

#offers .offer .content h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 0 0;
}

#offers .offer .content .address {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

#offers .offer .content .products {
    width: 100%;
    position: relative;
}

#offers .offer .content .products .product .details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 16px 0;
}

#offers .offer .content .products .product .details img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-right: 16px;
}

#offers .offer .content .products .product .details h5 {
    font-size: 14px;
    font-weight: 600;
    width: 90%;
    margin: 0;
    margin-bottom: 8px;
}

#offers .offer .content .products .product .details span {
    display: block;
    font-size: 13px;
    color: var(--gray);
}

#offers .offer .content .products .product .details .text {
    width: 100%;
}

#offers .offer .content .products .product .details .text .detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#offers .offer .content .products .product .details .text .detail:last-of-type {
    margin-top: 8px;
}

#offers .prices {
    margin-top: 20px;
}

#offers .prices .price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#offers .prices .price:nth-child(2) {
    margin: 8px 0;
    font-weight: 600;
}

#offers .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#offers .buttons a, #offers .buttons button {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    background-color: #fff;
    border: none;
    border-top: 1px solid var(--gray);
    border-right: 1px solid var(--gray);
    transition: all 0.25s;
    text-align: center;
}

#offers .buttons img {
    height: 20px;
    padding: 2px;
    margin: 0;
}

#offers .buttons a:last-child {
    border-right: none;
}

/* OFFER */

#offer .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

#offer .flex.dark {
    background-color: #000;
    color: #fff;
    padding: 8px;
}

#offer .flex.border {
    border: 1px solid var(--gray) !important;
    padding: 8px;
    margin-bottom: 0;
}

#offer p {
    margin: 0;
    padding: 16px 8px;
    border: 1px solid var(--gray);
    border-top: none;
}

#offer .btn.btn-primary {
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
}

/*REPLY SIDEBAR*/

#sidebar-reply {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9999;
    background: #fff;
    color: #000;
    transition: all 0.3s;
    padding: 0 20px;
}

#sidebar-reply.active {
    right: 0;
}

#sidebar-reply .dismiss-reply {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    position: absolute;
    top: 15px;
    right: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 24px;
}

#sidebar-reply .dismiss-reply:hover {
    background: #000;
    color: #fff;
}

#sidebar-reply h2 {
    font-size: 26px;
    margin: 40px 0 20px;
}

#sidebar-reply textarea {
    width: 100%;
    height: 500px;
    border: 1px solid #000;
    padding: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    resize: none;
}

#sidebar-reply .btn.btn-primary {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 450px;
}


/* PROFILE */

#profile .header {
    display: flex;
    flex-direction: column;
}

#profile .flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 650px;
    margin: 0 auto;
}

#profile .flex a .menu-icon {
    width: 28px;
    height: 28px;
}

#profile .flex a i {
    font-size: 16px;
    font-weight: 300;
}

#profile .flex a {
    display: block;
    padding: 16px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

#profile .flex a:hover {
    background-color: #000;
    color: #fff;
}

#profile h4 {
    margin: 20px 0;
    font-size: 20px;
    font-weight: 600;
}

#profile form {
    width: 100%;
    max-width: 800px;
    margin: 20px 0;
}

#profile form .inputs {
    display: flex;
    justify-content: space-between;
}

#profile form input {
    width: 350px;
    margin: 12px 0;
    border: none;
    border-bottom: 1px solid #000;
}

#profile form .inputs .group {
    display: flex;
    flex-direction: column;
}

#profile form .btn.btn-primary {
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 500px;
}

/* CONTACT */

#contact h3 {
    margin: 40px 0 10px;
    font-size: 22px;
    font-weight: 600;
}

#contact h4 {
    margin: 20px 0 4px;
    font-size: 18px;
    font-weight: 600;
}

#contact span {
    display: block;
    margin: 4px 0;
}

#contact .title {
    text-transform: uppercase;
}

/* FOOTER */

footer {
    background-color: #fff;
}

footer .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid #ccc;
}

footer .wrapper .first {
    width: 100%;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer .wrapper .first img {
    width: 90%;
    object-fit: contain;
    margin: 8px 0;
}

footer .wrapper .group {
    width: 100%;
    max-width: 200px;
}

footer .wrapper .group a {
    display: block;
    margin: 8px 0;
    min-height: 14px;
    color: var(--gray);
}

footer .social {
    display: flex;
    gap: 8px;
}

footer .social a {
    border: 1px solid #000;
    border-radius: 99px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .social i {
    font-size: 20px;
}

/* MODALS */

.fullScreenModal {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    margin: 0;
}

.fullScreenModal .modal-content {
    height: 100vh;
    border-radius: 0;
}

.fullScreenModal .modal-header {
    border-bottom: 0;
}

.fullScreenModal .modal-header .close {
    margin: 0;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 16px;
}

.fullScreenModal .modal-content .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullScreenModal .modal-content .modal-body .inner {
    width: 400px;
}

/* FORM */

.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #000;
}

@media (max-width: 750px) {
    .desktop-header {
        display: none;
    }

    #profile form input {
        width: 100%;
    }

    #profile form .inputs {
        width: 100%;
    }

    #profile form .inputs .group {
        width: 100%;
    }

    footer .wrapper {
        flex-direction: column;
    }

    footer .wrapper .first {
        width: 100%;
        max-width: 100%;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    footer .wrapper .first img {
        width: 250px;
    }

    footer .wrapper .group {
        max-width: 100%;
    }

    footer .wrapper .group a {
        text-align: center;
    }

    #product-list .filters .dropdown.bootstrap-select.show-tick.filter {
        min-width: 40%;
    }

}

@media (min-width: 750px) {

    #mainPage {
        margin: 150px auto 0;
    }

    .wrapper {
        margin: 170px auto 80px;
    }

    #offers .offer .content .products .product .details img {
        width: 150px;
        height: 150px;
    }

    #profile .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #profile .header h2 {
        margin: 0;
    }

    #profile .flex {
        margin: 0;
    }

    #profile form {
        margin: 0 auto;
    }

}

@media (min-width: 1140px) {
    .wrapper {
        padding: 0;
    }

    #product .product {
        flex-direction: row;
        gap: 80px;
    }

    #product .product-image img {
        width: 400px;
    }

    #product .prices .price {
        flex-direction: column;
        margin: 16px 0;
    }

    #product .details .detail {
        width: 100%;
        margin: 10px 0;
    }

    #contact .flex {
        display: flex;
        justify-content: space-between;
    }

    #contact .flex h3 {
        margin: 20px 0 10px;
    }

    #reservations .reservations .reservation .details img {
        width: 150px;
        height: 150px;
        margin-right: 30px;
    }

    #reservations .reservations .reservation .details h5 {
        font-size: 18px;
        width: 100%;
    }

    #sidebar-reply {
        width: 400px;
    }

    #sidebar-offer, #sidebar-reservation {
        width: 450px;
    }

}

@media (max-width: 1140px) {

    .desktop-header .member-status .align-center {
        margin: 0 20px;
    }

    .desktop-header .header {
        padding: 30px 20px;
    }

    #profile form .inputs {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 768px) and (max-width: 992px) {}

@media (min-width: 993px) and (max-width: 1100px) {}

@media (min-width: 1201px) and (max-width: 1366px) {}

@media (min-width: 1367px) {}