body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.header__content, .nav, .content {
    width: 1180px;
    margin: 0 auto;
}
/* HEADER */
.header {
    border-bottom: 1px solid #9A9999;
    margin-bottom: 60px;
}
.header__content {
    display: flex;
    padding: 10px 0;
    justify-content: space-between;
    flex-wrap: wrap;
}
.header__logo {
    height: 70px;
}
.header__logo img {
    height: 100%;
}
.header__heading {
    font-weight: 600;
    color: #494E51;
    font-size: 24px;
}
/* END HEADER  */


/* NAVIGACE */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__step {
    background: #6CAF59;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    position: relative;
}
.nav__step::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24.5px 0 24.5px 17px;
    border-color: transparent transparent transparent #6CAF59;
    position: absolute;
    right: -17px;
}
.nav__step-divider {
    content: '';
    width: 24px;
    height: 3px;
    background: #D4CFCF;
    position: relative;
    right: -8.5px;
}
.nav__step--active {
    background: #494E51;
}
.nav__step--active::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24.5px 0 24.5px 17px;
    position: absolute;
    right: -17px;
    border-color: transparent transparent transparent #494E51;
}
.nav__number {
    font-size: 30px;
    font-weight: 600;
    margin-right: 10px;
}
.nav__title {
    font-size: 14px;
    text-transform: uppercase;
    display: block;
}
.nav__final-step {
    border-radius: 300px;
    width: 32px;
    height: 32px;
    padding: 0;
}
.nav__final-step::after, .nav__final-step::before {
    content: none;
}
/* END NAVIGACE */

/* CONTENT (FORM) */
.content {
    margin-bottom: 150px;
}
.info-box {
    width: 100%;
    border-radius: 300px;
    padding: 14px 0;
    text-align: center;
    margin-top: 35px;
    margin-bottom: -20px;
    font-weight: 700;
}
.info-box--error {
    background: #FEE7E7;
    color: #FD2525;
}
.info-box--success {
    background: #6CAF5938;
    color: #6CAF59;
}
.content__heading {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    color: #6CAF59;
    margin: 60px 0px 25px 0px;
}
.form__box {
    background: #F5F5F5;
    margin-bottom: 15px;
}
.form__box--small {
    width: 350px;
}
.form__row {
    display: flex;
}
.form__input-box {
    padding: 0 45px 45px 45px;
    min-width: 230px;
}
.form__row:first-of-type {
    padding-top: 45px;
}
.form__input-heading {
    font-weight: 700;
    margin-bottom: 15px;
}
.form__input {
    padding: 10px;
    border: 1px solid #8A8484;
    box-sizing: border-box;
    background: white;
    min-width: 230px;
}
.form__input--ean {
    max-width: 80px!important;
    min-width: unset;
}
.form__ean {
    margin-right: 15px;
}
.form__select {
    padding-right: 45px;
}
.form__radio-wrapper {
    display: flex;
    align-items: center;
}
.radio-input {
    margin: 0px 15px 0px 0px
}
.form__buttons {
    margin: 25px 0px 50px 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.button {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 300px;
    border: 3px solid transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    margin: 0px 10px 20px 10px;
    text-decoration: none;
}
.button--primary {
    background: #6CAF59;
    border-color: #6CAF59;
    color: white;
}
.button--secondary {
    background: #707070;
    border-color: #707070;
    color: white;
}
.button--inversed {
    background: white;
    border-color: #6CAF59;
    color: #6CAF59;
}
.toggle-link {
    cursor: pointer;
    margin-top: 10px;
    text-decoration: underline;
}
.toggle-div {
    background: white;
    padding: 5px;
    border: 1px solid #D8D8D8;
    margin-top: 5px;
    display: none;
    position: absolute;
}
.toggle-div p {
    padding: 10px;
    margin: 0;
    line-height: 24px;
}
.toggle-link:hover ~ .toggle-div, .toggle-div:hover {
    display: block;
}

/* END CONTENT (FORM) */
/* LIST */
.list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.list__item {
    background: #F5F5F5;
    margin-bottom: 5px;
}
.list__link {
    text-decoration: none;
    color: black;
    display: block;
    width: 100%;
    padding: 7px 25px;
    font-size: 14px;
}
.list__date {
    margin-right: 45px;
}
.list__client {
    font-weight: bold;
    text-decoration: underline;
}

/* END LIST*/

.final-text p {
    font-size: 18px;
    line-height: ;
}

/* TABLET */
@media screen and (max-width: 1180px) {
    .header__content, .nav, .content {
        width: 80%;
    }
    .nav__final-step .nav__title {
        display: block;
    }
    .nav__title { 
        display: none;
    }
    .nav__number {
        margin: 0;
    }
    .nav__step::before {
        content: none;
    }
    .nav__step-divider {
        right: 0;
    }
}
@media screen and (max-width: 700px) {
    .form__row {
        flex-wrap: wrap;
    }   
    .form__input-box, .form__input {
        width: 100%;
        min-width: unset;
    }
    .form__input-box {
        padding: 0 25px 25px 25px;
    }
    .sm-pb-25 {
        padding-bottom: 25px;
    }
    .sm-pb-0 {
        padding-bottom: 0;
    }
    
}



/* UTILITIES */

span.poznamka {
    font-weight: 300;
    font-style: italic;
}

.lg-justify-between {
    justify-content: space-between;
}
@media screen and (max-width: 700px) {
    .lg-justify-between {
        justify-content: center;
    }
}
.text-big {
    font-size: 18px;
}
.text-bold {
    font-weight: 700;
}
.text-black {
    color: black!important;
}
.mr-70 {
    margin-right: 70px;
}
.pb-0 {
    padding-bottom: 0;
}
.m-0 {
    margin: 0;
}
.py-0 {
    padding-top: 0!important;
    padding-bottom: 0!important;
}
.pl-0 {
    padding-left: 0;
}
.xl-mr-25 {
    margin-right: 25px;
}
@media screen and (max-width: 900px) {
   .xl-mr-25 {
    margin-right: 0;
   }
}
.mb-30 {
    margin-bottom: 30px;
}
.py-25 {
    padding-top: 25px!important;
    padding-bottom: 25px!important;
}
.d-inline-b {
    display: inline-block;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}