/* 
    Created on : Oct 20, 2022, 11:16:06 AM
    Author     : Mahabub
*/



.subsection-wrap.subscribe-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.success-verify {
    display: flex;
    flex-direction: column;
    background: #f7f7f7;
    margin: 30px 0;
    justify-content: center;
    align-items: center;
    padding: 50px 15px;
    border-radius: 10px;
}

.icon-success {
    max-width: 100px;
    color: #54bb54;
}

.message-success {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.message-success h3 {
    font-size: 30px;
    margin: 0;
}

.success-verify.verify-error svg {
    color: red;
}

.success-verify.verify-error {
    background: rgba(255, 0, 0, .1);
}

.success-verify.verify-error .message-success h3 {
    color: #f00;
}

body .subsection-wrap input {
    border: 0;
    border-radius: 0;
    padding: 0 10px;
    width: 100%;
    border: 1px solid var(--primary-color);
    height: 36px;
    margin-bottom: 10px;
}

body .subsection-wrap input:focus {
    outline: none;
    box-shadow: none;
}

.subsection-wrap.subscribe-flex input {
    margin-bottom: 0;
}

.subsection-wrap button {
    display: flex;
    padding: 4px 15px;
    justify-content: center;
    color: #fff;
    background: var(--primary-color);
    height: 36px;
    min-width: 100px;
    text-transform: uppercase;
    align-items: center;
    line-height: 1;
    font-size: 14px;
    border: 1px;
}


.working::after {
    content: "";
    width: 5px;
    height: 5px;
    background: #04adff;
    display: block;
    border-radius: 5px;
    position: absolute;
    left: 0;
    animation-duration: .6s;
    animation-name: leftRight;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
}

.working::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #f27777;
    display: block;
    border-radius: 5px;
    position: absolute;
    left: 0;
    animation-duration: .6s;
    animation-name: rightLeft;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
}

.working {
    width: 25px;
    position: relative;
    display: flex;
    align-items: center;
    height: 22px;
}

.subscribe-btn .done {
    width: 20px;
    height: 20px;
    position: relative;
}

.subscribe-btn .done::after,
.subscribe-btn .done::before {
    content: "";
    background: #fff;
    position: absolute;
}

.subscribe-btn .done::after {
    width: 10px;
    height: 2px;
    left: -1px;
    transform: rotate(45deg);
    bottom: 6px;
}

.subscribe-btn .done::before {
    right: -4px;
    top: 8px;
    width: 20px;
    height: 2px;
    transform: rotate(-45deg);
}

#subscribe-msg {
    font-size: 15px;
    color: #f00;
}

#subscribe-msg.error {
    color: red;
}

#subscribe-msg.info {
    color: green;
}

@keyframes leftRight {
    from {
        transform: translate(0);
    }

    to {
        transform: translate(20px);
    }
}

@keyframes rightLeft {
    from {
        transform: translate(20px);
    }

    to {
        transform: translate(0);
    }
}

/*Floated Subscribe*/
.floated-subscribe-window {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    padding: 50px;
    z-index: 9999999;
}

.cls-floated-subscribe {
    position: absolute;
    top: 25px;
    right: 50px;
    line-height: 1;
    font-size: 28px;
    cursor: pointer;
    color: #9999;
}

.subscribe-contents {
    display: flex;
    align-items: center;
    height: 100%;
    flex-direction: column;
    padding-top: 50px;
    max-width: 700px;
    margin: auto;
}

.subscribe-contents h3,
.subscribe-contents h4,
.subscribe-contents h5,
.subscribe-contents .heading {
    font-size: 35px;
    margin-bottom: 0;

}

.subscribe-contents p {
    color: #666;
    text-align: center;
}

.subscribe-contents .subsection-wrap {
    width: 320px;
}

.subscribe-contents .subsection-wrap .subscribe-btn {
    margin: auto;
}

.subscribe-contents h3 *,
.subscribe-contents h4 *,
.heading * {
    font-size: 45px !important;
}

@media only screen and (max-width: 768px) {

    .subscribe-contents h3,
    .subscribe-contents h4,
    .subscribe-contents h5,
    .subscribe-contents .heading,
    .heading * {
        text-align: center;
        font-size: 26px;
    }
}