.popup-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100% !important;
    margin: 0!important;
    display: none;
}

#popup .popup-inner {
    width: 670px;
    max-width: 90vw;
    background-image: linear-gradient(to right, rgba(74, 79, 125, 1), rgba(48, 53, 99, 1));
    border-width: 1px;
    border-style: none;
    border-color: transparent;
    border-radius: 5px;
    box-shadow: 1px 1px 15px -6px #202020;
    position: relative;
    padding: 55px;
    padding-left: 220px;
    box-sizing: border-box;
    line-height: 1.5;
    margin: 0 auto;
}
#popup .popup-inner:before {
    content: "";
    background-image: url("../Img/bg-popup.png");
    background-size: contain;
    width: 200px;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    background-position: left center;
}
#popup .popup-title {
    font-family: 'Open Sans Condensed', 'arial';
    font-size: 54px;
    color: #74deed;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    line-height: 1.5;
}
#popup .popup-description {
    font-family: 'Open Sans', 'arial';
    font-size: 16px;
    color: #ffffff;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    margin-bottom: 20px;
}
#popup  .input-text {
    font-family: 'Open Sans', 'arial';
    font-size: 16px;
    color: #252243;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 1);
    background-image: none;
    border-width: 3px;
    border-style: solid;
    border-color: #ffffff;
    border-radius: 5px;
    box-shadow: none;
    min-height: 60px;
    width: 100%;
    margin-bottom: 20px;
    display: block;
    padding: 0 8px;
    line-height: 2;
}
#popup .input-text.error {
    background: #ffe0e0;
    border: #c70000 solid 2px;
}

#popup  .input-text:focus {
    border-color: transparent;
    outline: none;
}
#popup  textarea.input-text{
    height: 90px;
    line-height: 1.5;
    resize: none;
    padding: 5px 8px;
}

#popup .popup-protection-container {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

#popup .popup-protection-container label{
    color: white;
    font-family: 'Open Sans','arial';
    font-size: 16px;
    margin-left: 10px;
}
#popup .popup-protection-container input[type="checkbox"]{
    border: 1px solid #7e8993;
    border-radius: 4px;
    background: #fff;
    color: #555;
    clear: none;
    cursor: pointer;
    display: inline-block;
    line-height: 0;
    margin: -.25rem .25rem 0 0;
    outline: 0;
    padding: 0!important;
    text-align: center;
    vertical-align: middle;

    min-width: 25px;
    -webkit-appearance: none;
    box-shadow: inset 0 1px 2px rgb(0, 0, 0, 0.1);
    transition: .05s border-color ease-in-out;
    width: 25px;
    height: 25px;
}

#popup .popup-protection-container input[type="checkbox"].error{
    background-color: #ffe0e0;
    border: #c70000 solid 2px;
}

#popup .popup-protection-container input[type="checkbox"]:checked:before {
    content: url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%231e8cbe%27%2F%3E%3C%2Fsvg%3E);
    width: 25px;
    height: 25px;
    margin: 0px -2px;
}
#popup .popup-submit input{
    font-family: 'Open Sans','arial';
    font-size: 17px;
    color: #ffffff;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    background-color: #9365db;
    background-image: none;
    border-width: 1px;
    border-style: solid;
    border-color: #9365db;
    border-radius: 5px;
    box-shadow: none;
    height: 60px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
    display: block;
    max-width: none;
}
#popup .popup-submit input:focus {
    border-color: transparent;
    outline: none;
}

.feedback-container{
    position: fixed;
    bottom: 0!important;
    left: 0;
    margin: 0!important;
    width: 100%;
    background-color: rgba(255,255,255,1);
    z-index: 9999999;
    background-image: linear-gradient(to right, rgba(74, 79, 125, 1), rgba(48, 53, 99, 1));
    box-shadow: 1px 1px 15px -6px #202020;
    display: none;
    max-width: 100%!important;
}
.feedback-container .feedback-inner{
    width: 1200px;
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
    color: white;
}
.feedback-container .feedback-inner textarea{
    width: 100%;
    font-family: 'Open Sans', 'arial';
    font-size: 16px;
    color: #252243;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 1);
    background-image: none;
    border-width: 3px;
    border-style: solid;
    border-color: #ffffff;
    border-radius: 5px;
    box-shadow: none;
    margin-bottom: 20px;
    display: block;
    padding: 10px;
    line-height: 1.5;
    resize: none;
}

.feedback-container .feedback-inner textarea.error{
    background-color: #ffe0e0;
    border: #c70000 solid 2px;
}

.feedback-container .feedback-inner .feedback_title{
     font-family: 'Open Sans Condensed', 'arial';
     font-size: 54px;
     color: #74deed;
     font-weight: 700;
     font-style: normal;
     text-decoration: none;
     text-align: left;
     line-height: 1.5;
 }
.feedback-container .feedback-inner .feedback_description{
    font-family: 'Open Sans', 'arial';
    font-size: 16px;
    color: #ffffff;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    margin-bottom: 20px;
}
.feedback-container .feedback-inner .submit-container{
    text-align: right;
}
.feedback-container .feedback-inner .submit-container .submit-feedback{
    font-family: 'Open Sans','arial';
    font-size: 17px;
    color: #ffffff;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    background-color: #9365db;
    background-image: none;
    border-width: 1px;
    border-style: solid;
    border-color: #9365db;
    border-radius: 5px;
    box-shadow: none;
    cursor: pointer;
    margin-bottom: 20px;
    display: inline-block;
    max-width: none;
    padding: 5px 10px;
    outline: none;
}



