@import url(add_1.css);
@import url(reset_1.css);

:root {
    --loader-bg: #2d2d2dc3;
    /* loading screen background color */
    --spinner-border: #ffffff;
    /* spinner border color */
    --spinner-transparent: transparent;
    /* spinner top border (invisible) Can change to color*/
}

.feedback-container {
    position: relative;
}

.feedback-form_loader {
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--loader-bg);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--spinner-border);
    border-top-color: var(--spinner-transparent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

html {
    font-family: 'Helvetica', sans-serif;
    font-weight: 400;
}


button,
textarea {
    font-family: 'Helvetica', sans-serif;
    font-weight: 400;
}

.container_own {
    max-width: 1345px;
    padding: 0 15px;
    width: 100%;
}

a:hover {
    text-decoration: none !important;
}

strong {
    font-weight: bold;
}

.wrapper {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
}

.d-flex {
    display: flex;
    justify-content: center;
}
.counter-wrapper {
    display: flex;
    overflow: hidden;
    justify-content: center;
    border: 1px solid #EBFF00;
    border-radius: 10px;
    
}
.counter_title{
    background-color: #EBFF00;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 97px;
    font-weight: 900;
    font-size: 10px;
    color: #000000;
    line-height: 1.2;
}
.counter{
    color: white;
    display: flex;
    padding: 13px 15px;
    gap: 11px;
}
.counter div{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 8px;
    font-weight: 300;
}
.counter-number{
    font-weight: 500;
    font-size: 24px;
    width: 30px;
    
}
#price{
    display: inline;    
    white-space: nowrap;
}

header {
    position: sticky!important;
    top: 0;
    transition: all 0.3s ease-in-out;
}
header.sticky {
    padding: 10px 0;
}

@media screen and (max-width: 1199px) {
    header.sticky {
        padding: 10px 0;
        background-color: #00000063;
        backdrop-filter: blur(10px);
    }
 
}

@media screen and (max-width: 600px) {
   .counter_title{
    max-width: 75px;
   }
   .counter{
        padding: 10px 10px;
        
    }
    
}