@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    list-style: none;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
}


body {
    margin: 0 auto;
    font-family: 'Barlow', sans-serif;
    color: #0d0d33;
   
    width: 100%;
    font-weight: 400;
}
.r_cont{
    width: 100%;
    height: auto;
    min-height: 600px;
    box-sizing: border-box;
}
.r_cont h1{
    margin: 0 !important;
    padding: 0 0 20px 0 !important;
    font-size: 25px;
    line-height: 30px;
}
.reservation {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding:35px 0 0 0;
   height: auto;

    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;

}
.r_steps{
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    position: absolute;
    background-color: #f2f2f2;
}
.steps{
    width: 0;
    height: 15px;
    position: relative;
    background-color: #fccb06;
    transition: .5s all;
}
.intro_s{
    width: 100%;
}
.res_section {
    width: 100%;
    transition: all 0.5s ease;
}

.section_poslovalnica,
.section_storitev,
.section_date,
.section_info,
.section_success,
.section_time {
    
    width: 100%;
    height: 0;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.5s ease;
   

}
.section_success{
    text-align: center;
    line-height: 25px;
}

.section_info {
    text-overflow: unset;
    white-space: unset;
}

.s_sec {
   
    width: 100%;
    height: auto;
    overflow: visible;
    transition: all 0.5s ease;
}

.res_section h2 {
    margin-bottom:  0 !important;
    padding-bottom: 20px;
    font-size: 16px;
    margin-left: 30px;
    padding-left: 20px;
}
.first_q{
 padding-left: 25px !important;
 margin-left: 0 !important;
}

.zapis {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-bottom: none;
    border-left: 10px solid #f2f2f2;
    transition: .5s all;
    cursor: pointer;
    position: relative;
}

.price_info{
    position: absolute;
    top: 35px;
    right: -1px;
    background-color: #1b2d4f;
    color:#fff;
    padding: 5px 10px;
    width: auto;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
}
.res_section .zapis:last-child {
    border-bottom: 1px solid #f2f2f2;
}

.zapis h3 {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 600;
}

.zapis small {
    margin-right: 20px;
}

.zapis small i {
    color: #1b2d4f;
    margin-right: 5px;
}

.zapis:hover {
    transition: .5s all;
    border-left: 10px solid #1b2d4f;
}

.dp {
    width: 100%;
    font-weight: 600 !important;
    font-size: 18px;
    border: 1px solid #000;

}

.times {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    width: 100%;
}

.time {

    background-color: #f1f5f7;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.past {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f7;
    text-align: center;
    cursor: default;
    font-size: 13px;
    font-weight: 600;
    opacity: .35;
    height: 30px;
}

.time:hover {
    background-color: #1b2d4f;
    color: #fff;
    transition: .5s all;
}

.back {
    position: absolute;
    top: 37px;
    left: 20px;
    display: none;
    cursor: pointer;
}

.res_info {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 0;
    padding: 0 0;
    justify-content: space-between;
    position: relative;
    width: 94%;     
    margin: 0 auto; 
}

input,
textarea,
select {
    font-family: 'Barlow', sans-serif;
    outline: none;
   
  
}

.inputF {
    width: 100%;
    height: 50px;
    background-color: #f7f7f7;  
    border: 1px solid #1b2d4f;         
    font-size: 16px;
    padding:  12px;
    color: #1b2d4f;  
    outline: none;
    transition: all 0.2s ease-in-out;
    margin-top:5px;
}

.inputF:focus {
    background-color: #ffffff;
    border-color: #274372;
    box-shadow: 0 0 4px rgba(27,45,79,0.4); /* rahel fokus efekt */
}

.area-field {
    width: 100%;
    min-height: 120px;
    background-color: #f7f7f7; /* rahlo sivo ozadje */
    border: 1px solid #1b2d4f; /* modra obroba */
    
    font-size: 16px;
    padding: 12px;
    color: #1b2d4f; /* temno modra pisava */
    resize: vertical; /* dovoli samo vertikalno raztegovanje */
    outline: none;
    transition: all 0.2s ease-in-out;
}

.area-field:focus {
    background-color: #ffffff;
    border-color: #274372;
    box-shadow: 0 0 4px rgba(27,45,79,0.4);
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #8f96a5;
    opacity: 1;
    font-size: 15px !important;
    font-weight: 400;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #8f96a5; font-size: 15px !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #8f96a5; font-size: 15px !important;
}



.res_info label {
    color: #403F41;
    font-size: 12px;
    margin: 5px 0;
}

.res_info>div {
    display: flex;
    flex-direction: column;
    flex-basis: 48%;
    padding: 0;
    margin-bottom: 10px;
}

.full_r {
    flex-basis: 100% !important;
}

.summary {
    background-color: #f2f2f2;
    padding: 20px 15px !important;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px;


}

.summary_info {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    line-height: 20px;
}

.summary_info p {
    width: calc(100% - 25px);

}

.summary span {
   display: flex;
   align-items: center;
   justify-content: center;
    width: 20px;
    color: #0d0d33 !important;
    font-size: 13px;
    font-weight: 400;
}

.summary i {
    text-align: center;
    width: 25px;
    color: #1b2d4f !important;
    margin-right: 8px !important;
}

.rezBtn {
    width: 100% !important;
    padding: 10px 0;
    height: auto;
    color: #fff !important;
    text-decoration: none;
    font-weight: 300;
    width: auto;
    border-radius: 0;
    margin: 0 !important;
    background-color: #1b2d4f;
    margin-top: 0;
    font-size: 18px !important;
    font-weight: 600;
    display: inline-block;
    transition: .5s all;
    -webkit-appearance: button;
    cursor: pointer;
    position: relative;
    text-align: center;
    transition: .5s all;
    letter-spacing: 1px;
}

.rezBtn:hover {
    background-color: #3b6692;
}

.rezBtn i {
    margin-left: 10px;
}
.info_storitev{
    padding: 15px 25px;
    font-size: 14px;
    display: none;
}
.show_info{
    z-index: 100;
    position: absolute;
}
.show_s{
    display: block;
}


.btn {
    background-color: #403F41;
    padding: 0.5em 1em;
    color: white;
    display: inline-block;
    margin-top: 1em;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.btn:hover {
    background-color: #044c5a;
    color: white !important;
}

@media (max-width:580px) {
 

.res_info>div {
     
    padding: 0;

}

}