*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.popup {

    background-color: rgba(242, 242, 242, 0.959);
    padding: 30px 10px;
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    font-family: Arial, Helvetica, sans-serif;
    display: none;
    box-shadow: 0px 0px 7px 1px rgb(90 87 87 / 94%);
    z-index:100000000000;
    animation: appear 1s ease;
}

input[type=text]{
    width: 100%;
    border: 2px solid #aaa;
    border-radius: 4px;
    margin: 8px 0;
    outline: none;
    padding: 8;
    box-sizing: border-box;
    transition: .3s;
}

input[type=text]:focus{
    border-color: dodgerblue;
    box-shadow: 0 0 8px 0 dodgerblue;
}

.close-btn{
   color: rgb(114, 112, 112);
   cursor: pointer;
}
.close-btn:hover{
   color: rgb(68, 67, 67);
   cursor: pointer;
}
.newsletter-form .frm-design  {
    height: 30px;
    border-radius: 8px;
    box-shadow: 4px 5px 5px rgb(216, 208, 208);
}

input[type=text]{
    width: 100%;
    border: 2px solid rgb(219, 214, 214);
    border-radius: 4px;
    outline: none;
    padding: 8px;
    box-sizing: border-box;
    transition: .3s;
}

input[type=text]:focus{
    border-color: dodgerblue;
    box-shadow: 0 0 8px 0 dodgerblue;
}

.inputWithIcon input[type=text]{
    padding-left: 53px;
}

.inputWithIcon{
    position: relative;
}
.inputWithIcon i{
    position: absolute;
    left: 0;
    top: 10px;
    padding: 9px 8px;
    color: #aaa;
}
.fa-fw {
    text-align: center;
    width: 2em;
}
.inputWithIcon input[type=text]:focus + i {
    color: dodgerblue;
}
.inputWithIcon.inputIconBg i{
    background-color: #aaa;
    color: #fff;
    padding: 16px 4px;
    border-radius: 4px 0 0 4px;
}
.inputWithIcon input[type=text]:focus + i {
    color: #fff;
    background-color: dodgerblue;
}

.newsletter-header{
    text-align: center;
}
.newsletter-header h4 {
    margin: 0;
}
.newsletter-footer {
    text-align: center;
    margin-top: 20px;
}

@keyframes appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}