body {
    margin: 0;
    padding: 0
}

.easycall {
    height: calc(100vh - 134px);

    display: flex;
    /*align-items: center;*/
    /*justify-content: center;*/
}

.easycall .left {
    background: white;
    margin-left: -20px;
    padding-left: 20px;
    width: 50%;
    margin-top: -10px;
    padding-top: 10px;
    margin-bottom: -100px;
    /*padding-bottom: 100px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 30px;
}

.left .card-body {
    padding: 10px 50px;
}
.left .feature-list {
    margin-top: 1rem;
}

.left .feature-list .feature {
    display: flex;
    align-items: center;
    margin-bottom: 1.3rem;
}

.left .feature-list .feature i.text-success {
    color: #2dce89!important;
    margin-right: 1rem;
}

.left .feature-list .feature h4 {
    margin: 0;
    font-size: 1.0625rem;
}

.easycall .right {
    background: linear-gradient(87deg, rgba(75, 193, 191, 0.8), rgba(67, 163, 161, 0.8)), url("../../assets/images/background.png") 50% 50% no-repeat !important;


    width: 50%;
    margin-top: -10px;
    padding-top: 10px;
    margin-bottom: -100px;
    /*padding-bottom: 100px;*/

    display: flex;
    align-items: center;
}

.easycall .box {

    margin: 20px auto 20px;

    background-color: white;
    width: 500px;
    height: 400px;

    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02);

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center
}

.instructions{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.instructions li {
    margin-bottom: .8rem;
    font-weight: 500;
}

.box .heading {
    text-align: center;
}

.header {
    text-align: center;
    margin: 0 0 30px;
}

.header img {
    width: 225px;
}

.input-container input {
    font-family: Open Sans, sans-serif;
    /*font-size: 1rem;*/
    font-weight: 400;
    line-height: 1.5;
    color: #525f7f;
    text-align: left;
    word-wrap: break-word;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02);
    border: 0;
    transition: box-shadow 0.15s ease;

    padding: 10px 15px;
    width: 100%;
}

.button-container {

}

.buttons {
    display: flex;
    align-items: center;
    /*justify-content: s;*/
}

.buttons .button-container {
    margin: 0 10px;
}

.button-container button, .button-container a {
    word-wrap: break-word;
    box-sizing: border-box;
    margin: 0;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid #47C1BF;
    padding: 0.625rem 1.25rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #47C1BF;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    width: 100% !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    position: relative;
    text-transform: none;
    transition: all 0.15s ease;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
    will-change: transform;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    text-decoration: none;
}

.easycall-connected {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;
}


/* progress loader */
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    top: -12px;
    left: 2px;
}

.lds-ellipsis div {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

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

    .easycall .left{
        display: none;
    }

    .easycall .right {
        width: 100%;

        margin-left: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}