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

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

input,
textarea,
input:active,
textarea:active,
:focus {
    outline: none;
}


/* flexbox start */
.df {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.dif {
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: inline-flex;
}
.fw {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.fdc {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
.jcc {
    justify-content: center;
}
.aic {
    -ms-align-items: center;
    align-items: center;
}
/* flexbox end */

@media only screen and (min-width: 0px) {/* -------------------------- 📱 ≥0px 📱 -------------------------- */

    /* Objects */
    h1 {
        width: 100%;
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    p {
        font-size: 14px;
        margin-bottom: 15px;
        text-align: center;
    }
    .title {
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        margin: 30px auto 10px auto;
    }
    .errors {
        width: 100%;
    }
    .errors strong {
        padding: 0 5px;
    }
    .centerContent {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        width: 100%;
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
    }


    /* Index Page */
    .selectContryTitle {
        text-align: center;
        color: #fff;
        font-size: 20px;
    }
    .brandLogos {
        display: block;
        position: absolute;
        width: calc(100% - 30px);
        left: 15px;
        bottom: 15px;
    }
    .logosImg {
        display: block;
        width: 100%;
        max-height: 40px;
    }
    .bodySelectContry {
        height: 100vh;
        background: #000;
    }
    .selectContry {
        flex-wrap: wrap;
        padding: 50px;
    }
    .flagLink {
        width: calc(50% - 15px/2);
        margin-bottom: 15px;
        margin-right: 15px;
        max-width: 140px;
    }
    .flagLink:nth-child(2),
    .flagLink:nth-child(4) {
        margin-right: 0;
    }
    .flagImg {
        display: block;
        width: 100%;
        border-radius: 3px;
    }


    /* Add Product */
    .bodyAddProduct {
        background: #F6F6F6;
    }
    .header {
        padding-left: 0;
        padding-right: 0;
        background: url('../img/header-bg.svg') no-repeat 0 0 / 100% 100%;
        height: 100px;
    }
    .headerLogos {
        height: 100%;
    }
    .headerLogos img {
        width: 100%;
        max-height: 60px;
    }

    .contentForm {
        flex-wrap: wrap;
        width: 100%;
        max-width: 800px;
        margin-top: 20px;
        margin-bottom: 20px;
        background: #fff;
        border-radius: 20px;
        padding: 30px 15px;
        margin-left: auto;
        margin-right: auto;
    }
    .item {
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }


    .item > input:focus + .searchResultList {
        visibility: visible;
    }

    .itemTitle {
        font-size: 14px;
        color: #808080;
        margin-bottom: 7px;
    }
    .item--required .itemTitle:after {
        content: ' *';
        color: #DD000E;
    }
    .item input[type="text"],
    .item input[type="email"],
    .item input[type="date"],
    .item textarea{
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: center;
        width: 100%;
        height: 40px;
        border: 2px solid #DEDEDE;
        border-radius: 5px;
        padding: 0 10px;
    }
    .item textarea {
        height: 120px;
        padding: 10px;
    }
    .item input[type="checkbox"] {
        width: 20px;
        height: 20px;
        border: 2px solid #DEDEDE;
        border-radius: 5px;
    }
    .item label {
        font-size: 14px;
        color: #808080;
    }
    .item select {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: center;
        width: 100%;
        height: 40px;
        border: 2px solid #DEDEDE;
        border-radius: 5px;
        padding: 0 10px;
    }
    .item select option:first-child {
        color: #808080;
    }
    .conditions {
        position: relative;
        top: 5px;
    }
    .info {
        width: 100%;
        color: #808080;
    }
    .info span {
        color: #DD000E;
    }
    .btn {
        background: #DD000E;
        color: #fff!important;
        margin: 20px auto 0 auto;
        font-size: 14px;
        padding-left: 70px;
        padding-right: 70px;
    }

    .searchResultList {
        position: absolute;
        width: 100%;
        z-index: 1;
        background: #fff;
        left: 0;
        top: 65px;
        border: 2px solid #DEDEDE;
        padding: 0px;
        box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25);

    }
    .ResultListItem {
        height: 60px;
        margin-bottom: 15px;
        padding: 5px;
        cursor: pointer;
        transition: background .2s ease;
    }
    .ResultListItem:last-child {
        margin-bottom: 0;
    }
    .ResultListItem:hover {
        background: #DEDEDE;
    }
    .ListItemImg,
    .ListItemImg img {
        height: 100%;
    }
    .ListItemTitle {
        height: 100%;
        padding-left: 15px;
        font-size: 14px;
        overflow: hidden;
    }



    /* ThankYouPage */
    .icon-chec {
        max-width: 140px;
        margin: 0 auto 30px auto;
    }



}


@media only screen and (min-width: 576px) {/* -------------------------- 📱 ≥576px 📱 -------------------------- */



    /* Add Product */
    .header {
        height: 200px;
    }
    .contentForm {
        margin-top: 50px;
        margin-bottom: 50px;
    }


}


@media only screen and (min-width: 768px) {/* -------------------------- 💻 ≥768px 💻 -------------------------- */


    /* Objects */
    h1 {
        font-size: 30px;
    }
    p {
        font-size: 18px;
    }
    .title {
        font-size: 18px;
    }


    /* Index Page */
    .selectContryTitle {
        font-size: 30px;
    }
    .brandLogos {
        bottom: 30px;
    }
    .flagLink {
        width: calc(25% - 20px);
    }
    .flagLink:nth-child(2){
        margin-right: 15px;
    }
    /*
    .flagImg {
    filter: grayscale(1);
    transition: all .2s ease;
}
    .flagImg:hover {
    filter: grayscale(0);
}
    */


    /* Add Product */
    .itemTitle {
        font-size: 18px;
    }
    .item input[type="text"],
    .item input[type="email"],
    .item input[type="date"],
    .item select {
        height: 60px;
        padding: 0 15px;
        padding: 0 15px;
        font-size: 18px;
    }
    .btn {
        height: 60px;
        padding-left: 70px;
        padding-right: 70px;
        font-size: 18px;
    }
    .item textarea {
        height: 120px;
        font-size: 18px;
    }

    .contentForm {
        padding: 90px;
    }

    .searchResultList {
        top: 91px;

    }

   .error_field {
       border: 1px solid #721c24;
   }
   .text_error{
       font-size: 12px;
       font-style:italic;
       color: #721c24;
   }

   .page{
       width:80%;
       margin:30px auto;
       text-align: left;
   }
    .page p{
        text-align: justify;
    }

}


@media only screen and (min-width: 992px) {/* -------------------------- 💻 ≥992px 💻 -------------------------- */


}


@media only screen and (min-width: 1200px) {/* ------------------------- 📺 ≥1200px 📺 ------------------------- */


}


/* black out */
.container_info {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(89.71deg, #202020 4.64%, #242424 33.59%, #323232 105.68%);
  }
  .container_info .pos_container {
    display: flex;
  }
  .container_info .image_anim {
    width: 25px;
    height: 25px;
    display: flex;
    position: relative;
    background: url(/img/light.svg) center/contain no-repeat;
    margin-right: 0.5em;
  }
  .container_info .image_anim:before {
    content: "";
    position: absolute;
    top: -1.03em;
    left: -0.93em;
    width: 54px;
    height: 54px;
    -webkit-animation: opacityLight 4s linear infinite;
            animation: opacityLight 4s linear infinite;
    background: url(/img/light_active.svg) 50% 50%/contain no-repeat;
  }
  
  @-webkit-keyframes opacityLight {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes opacityLight {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  .title_alert {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    color: #FFFFFF;
  }
