@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');


.container {
    max-width: 900px;
    margin: 20px auto;
    overflow: hidden
}

.box-1 {
    max-width: 450px;
    padding: 10px 40px;
    user-select: none
}

.box-1 img.pic {
    width: 20px;
    height: 20px;
    object-fit: cover
}

.box-1 img.mobile-pic {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.box-1 .name {
    font-size: 11px;
    font-weight: 600
}

.dis {
    font-size: 12px;
    font-weight: 500
}

.box-2 {
    max-width: 450px;
    padding: 10px 40px
}

.box-2 .box-inner-2 input.form-control {
    font-size: 12px;
    font-weight: 600
}

.box-2 .box-inner-2 .inputWithIcon {
    position: relative
}

.box-2 .box-inner-2 .inputWithIcon span {
    position: absolute;
    left: 15px;
    top: 8px
}

.box-2 .box-inner-2 .inputWithcheck {
    position: relative
}

.box-2 .box-inner-2 .inputWithcheck span {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: green;
    font-size: 12px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 15px;
    top: 6px
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #7700ff
}

.border:focus-within {
    border: 1px solid #7700ff !important
}

.box-2 .card-atm .form-control {
    border: none;
    box-shadow: none
}

.form-select {
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.address .form-control.zip {
    border-radius: 0;
    border-bottom-left-radius: 10px
}

.address .form-control.state {
    border-radius: 0;
    border-bottom-right-radius: 10px
}

.box-2 .box-inner-2 .btn.btn-outline-primary {
    width: 120px;
    padding: 10px;
    font-size: 11px;
    padding: 0% !important;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 0;
    background-color: whitesmoke;
    color: black;
    font-weight: 600
}

.box-2 .box-inner-2 .btn.btn-primary {
    background-color: #7700ff;
    color: whitesmoke;
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 600;
    justify-content: center;
    border: none;
    padding: 10px
}

.box-2 .box-inner-2 .btn.btn-primary:hover {
    background-color: #7a34ca
}

.box-2 .box-inner-2 .btn.btn-primary .fas {
    font-size: 13px !important;
    color: whitesmoke
}

.fas.fa-arrow-left,
.fas.fa-arrow-right {
    font-size: 0.8rem;
    transition: all .2s ease
}

.icon {
    width: 30px;
    height: 30px;
    background-color: #f8f9fa;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform-origin: center;
    opacity: 1
}

.fas.fa-times {
    color: red
}

.fas,
.fab {
    color: #6d6c6d
}

::placeholder {
    font-size: 12px
}

.couponCode {
    text-transform: uppercase;
    font-size: 0.7rem
}

#code {
    pointer-events: none;
    font-weight: 600
}

.close {
    cursor: pointer
}

.info {
    transform: translateX(-500px);
    animation: moving 1.5s;
    animation-fill-mode: forwards
}

.updates {
    transform: translateX(-500px);
    animation: moving 1.7s;
    animation-fill-mode: forwards
}

.different {
    transform: translateX(-500px);
    animation: moving 1.9s;
    animation-fill-mode: forwards
}

.black {
    transform: translateX(-500px);
    animation: moving 2.1s;
    animation-fill-mode: forwards
}

.white {
    transform: translateX(-500px);
    animation: moving 2.3s;
    animation-fill-mode: forwards
}

.pastel {
    transform: translateX(-500px);
    animation: moving 2.5s;
    animation-fill-mode: forwards
}

.footer {
    transform: translateX(-500px);
    animation: moving 2.6s;
    animation-fill-mode: forwards
}

@keyframes moving {
    0% {
        opacity: 0;
        transform: translateX(-500px)
    }

    100% {
        opacity: 1;
        transform: translateX(0px)
    }
}

.box-2 {
    transform: translateY(-500px);
    animation: img-top 2.5s;
    animation-fill-mode: forwards
}

.user {
    transform: translateY(-500px);
    animation: img-top 2.5s;
    animation-fill-mode: forwards
}

.userdetails {
    transform: translateY(-500px);
    animation: img-top 2.0s;
    animation-fill-mode: forwards
}

.imgdetails {
    transform: translateY(-500px);
    animation: img-top 1.5s;
    animation-fill-mode: forwards
}

@keyframes img-top {
    0% {
        opacity: 0;
        transform: translateY(-500px)
    }

    100% {
        opacity: 1;
        transform: translateY(0px)
    }
}

@media (max-width:768px) {
    .container {
        max-width: 700px;
        margin: 10px auto
    }

    .box-1,
    .box-2 {
        max-width: 600px;
        padding: 20px 90px;
        margin: 20px auto
    }

    .box-2 {
        transform: translateX(-500px);
        animation: box-side 2.6s;
        animation-fill-mode: forwards
    }

    @keyframes box-side {
        0% {
            opacity: 0;
            transform: translateX(-500px)
        }

        100% {
            opacity: 1;
            transform: translateX(0px)
        }
    }
}

@media (max-width:426px) {

    .box-1,
    .box-2 {
        max-width: 400px;
        padding: 20px 10px
    }

    ::placeholder {
        font-size: 9px
    }
}