.container {
    max-width: 750px;
}
.large .container {
    max-width: 1280px;
}

.input-group input {
    min-height: 45px;
}

.input-group {
    margin-top: 11px;
}

.field_text_fg input,
.field_date_fg input,
.field_email_fg input {
    min-height: 45px;
    margin-top: 11px;
}

.field_password_fg input {
    border-right: none;
    box-shadow: none;
}

.field_password_fg span {
    background-color: #fff;
    /*position: absolute;*/
    /*top: 0px;*/
    /*right: -25px;*/
    /*height: 45px;*/
}

/*.help-class .field_password_fg span i{*/
/*    position: absolute;*/
/*    left: -5px;*/
/*    top: 13px;*/
/*    z-index: 2;*/
/*}*/

.field_password_fg span i {
    color: #787786;
}

.btn-install {
    float: none;
}

@media (max-width: 500px) {
    .layout-default .row .col-form {
        padding-left: 25px;
        padding-right: 25px;
    }

    .field-gdpr-inline_fg {
        display: flex;
    }

    .field-gdpr-inline_fg span {
        min-width: 37px;
    }

    .field-gdpr-inline_cfg {
        margin-top: 10px;
    }

}

.page .page-header, #gdpr-page-title {
    display: none;
}

#logo-container {
    margin-bottom: 15px;
    margin-top: 10px;
}

.device-mobile .page-title {
    font-size: 24px;
}


.btn-install {
    float: none;
}

.public-client p,
.public-client h3 {
    text-align: center;
}

.public-client .cloud {
    text-align: center;
    margin: auto;
    display: block;
}

#footer {
    min-height: 200px;
}

#mod_auth_confirm {
    max-width: 100% !important
}

.order-info-section {
    margin-top: 10px
}

.btn-back{
    height: 40px;
    margin-top: 10px;
}

.background-pos {
    /*background-image: none !important;*/
}

.pulsating-circle {
    display: block;
    transform: translateX(-50%) translateY(-50%);
    width: 30px;
    height: 30px;
    margin-top: 40px;
    margin-left: 50%;
}
.pulsating-circle:before {
     content: '';
     position: relative;
     display: block;
     width: 300%;
     height: 300%;
     box-sizing: border-box;
     margin-left: -100%;
     margin-top: -100%;
     border-radius: 45px;
     background-color: #01a4e9;
     animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
 }

.pulsating-circle:after {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     display: block;
     width: 100%;
     height: 100%;
     background-color: white;
     border-radius: 15px;
     box-shadow: 0 0 8px rgba(0,0,0,.3);
     animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
 }


@keyframes pulse-ring {
    0% {
        transform: scale(.33);
    }
    80%, 100% {
        opacity: 0;
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(.8);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(.8);
    }
}