@font-face {
    font-family: 'Cormorant';
    src: url('/fonts/Cormorant/Cormorant-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant-Semi-Bold';
    src: url('/fonts/Cormorant/Cormorant-SemiBold.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant-Bold';
    src: url('/fonts/Cormorant/Cormorant-Bold.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant-Italic';
    src: url('/fonts/Cormorant/Cormorant-Italic.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter-Regular.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('/fonts/Inter/Inter-Bold.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Semi-Bold';
    src: url('/fonts/Inter/Inter-SemiBold.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-display: swap;
}

.footer {
    background: black;
    color: white;
    padding: 11px;
    text-align: center;
    font-size: 11px;
}

img {
    width: 100%;
    height: auto;
}

.logo img {
    position: absolute;
    top: 30px;
    left: 100px;
    width: 130px;
    height: auto;
}


.menu a {
    position: absolute;
    top:30px;
    right: 100px;
    line-height: 56.25px;
}


.menu a:first-child {
    padding-right: 200px;
}

.image-top-text {
    position: absolute;
    top: 18%;
    left: 15%;
    z-index: 2;
    background: transparent;
    padding: 40px;
    padding-top: 40px;
    padding-top: 40px;
    padding-top: 0px;
    width: 70%;
    text-align: center
}

.image-top-text h1 {
    font-size: 46px;
}

.mv,
.bl {
    padding-top: 40px;
    padding-bottom: 40px;
}

.product-card {
    box-shadow: 0px 0px 1px rgba(33, 33, 33, .2);
    padding-bottom: 20px;
}

.product-card:hover {
    box-shadow: 0 0 1px rgba(33, 33, 33, 1);
    transition: all 200ms ease-in;
}

a {
    text-decoration: none;
    color: black;
    font-family: Inter;
}

p,
span {
    font-family: Inter;
}

a:hover {
    text-decoration: underline;
    color: black;
}

.product-name {
    color: black;
    text-decoration: none;
}

.product-name:hover {
    color: black;
    text-decoration: underline;
}

.black-button {
    color: white;
    background: black;
    border: 1px solid black;
    height: 38px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 2px;
}

.black-button:hover {
    color: black;
    background: white;
}

.titles {
    font-family: Cormorant;
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
}

.sub-titles {
    font-family: Cormorant;
    font-size: 34px;
    line-height: 1.2;
}

.mini-titles {
    font-family: Cormorant;
    font-size: 24px
}

/***** FLOATING FORMS *****/
.floating-label {
    position: relative;
    margin-bottom: 20px;
}

.floating-input {
    width: 100%;
    padding-left: 15px;
    margin: 0;
    float: left;
    color: black;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid black;
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.05em;
    border-radius: 2px !important;
    height: 38px;
    padding-top: 6px;
}

.floating-select {
    width: 100%;
    margin: 0;
    float: left;
    color: black;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid black;
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.05em;
    border-radius: 2px !important;
    height: 38px;
    padding-left: 15px;
    padding-top: 6px;
}

select {
    height: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url("https://www.bykoket.com/images/down-select.svg") no-repeat 98% center;
}

.floating-input:focus,
.floating-select:focus {
    outline: none;
    border: 2px solid #BDA96B;
}

.floating-form label {
    color: #999;
    font-size: 15px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 8px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    font-family: Inter, sans-serif;
}

.floating-input:focus~label,
.floating-input:not(:placeholder-shown)~label {
    top: -10px;
    font-size: 12px;
    color: #BDA96B;
    background-color: white;
    padding-left: 4px;
    padding-right: 4px;
}

.floating-input:focus~label svg {
    fill: #BDA96B;
}

.floating-input:not(:focus)~label {
    color: grey
}

.floating-select:not(:focus)~label {
    color: black
}

.floating-select:focus~label,
.floating-select:not([value=""]):valid~label {
    top: -10px;
    font-size: 12px;
    background-color: white;
    padding-left: 4px;
    padding-right: 4px;
}

.floating-select:focus~label {
    color: #BDA96B;
}


/* active state */
.floating-input:focus~.bar:before,
.floating-input:focus~.bar:after,
.floating-select:focus~.bar:before,
.floating-select:focus~.bar:after {
    width: 50%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.floating-textarea {
    min-height: 30px;
    max-height: 260px;
    overflow: hidden;
    overflow-x: hidden;
    height: 150px;
}

/* highlighter */
.highlight {
    position: absolute;
    height: 50%;
    width: 100%;
    top: 15%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
    -moz-opacity: 0.5;
    /* Firefox and Mozilla browsers */
    -webkit-opacity: 0.5;
    /* WebKit browser e.g. Safari */
}

/* active state */
.floating-input:focus~.highlight,
.floating-select:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

.errorInput {
    border: 1px solid red !important;
}

.errorLabel {
    color: red !important;
}

.errorLabel svg {
    fill: red !important
}

.error {
    font-size: 12px;
    color: red;
}


.termsModal p,
.termsModal a {
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 5px;
}

.termsModal a {
    text-decoration: underline
}

.termsModal a:hover {
    text-decoration: none
}

.blLearnMore,
.pressRelease {
    text-decoration: underline
}

.blLearnMore:hover,
.pressRelease:hover {
    text-decoration: none
}

.swal-footer {
    text-align: center;
}

.swal-button {
    background-color: black;
}

.swal-button:hover {
    background-color: #BDA96B !important;
}

.swal-button:focus {
    outline: none;
    box-shadow: none;
}

.catalogCard {
    background-color: #F2F2F2;
    margin-bottom: 20px;
}

.catalogCard img{
    max-width: 400px;
}

.catalogName {
    font-family: Cormorant,serif;
    font-size: 16px;
    text-transform: uppercase;
    min-height: 44px;
}

.owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
        background: #B3A06B!important;
        
    }

    .owl-theme .owl-dots .owl-dot span {
        width: 15px!important;
        height: 15px!important;
    }

@media(max-width: 650px) {
    .logo img {
        top: 10px;
        left: 10px;
    }
 
    .image-top-text {
        left: auto;
        width: 100%;
        top: 15%;
    }

    .image-top-text h1 {
        font-size: 32px;
    }

    
    .modal-content {
        width: 100% !important;
     }
}

@media(min-width: 1600px) {
    .image-top-text h1{
        font-size: 40px;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    .image-top-text {
        top: 9%;
    }

    .isaloni-dates, .isaloni-dates-btn{
        display: none;
    }

    .isaloni-dates-ipad{
        display: flex!important;
    }
}