.st-row {
    display: flex;
    flex-wrap: wrap;
}

.st-row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
}

.st-col-auto {
    flex: 0 0 auto;
    width: auto;
}

.h-100 {
    height: 100% !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.st-button-start, .st-button-activation {
    display: block;
    width: 100%;
    margin: 0 auto 4px auto;
    padding: 16px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background-color: #01ab09;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
}

.st-button-start:hover, .st-button-activation:hover {
    color: #fff;
    background-color: #00b608;
}

.st-button-start.disabled, .st-button-activation.disabled {
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}

.st-button-start-info {
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    color: #797979;
}

.st-trial-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.64);
    z-index: 99999;
}

.st-trial-popup {
    position: relative;
    display: block;
    width: 472px;
    max-width: 95%;
    height: auto;
    margin: auto;
    padding: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 24px rgba(14, 38, 86, .12);
    overflow: hidden;
}

.st-trial-popup .error-message {
    display: none;
    margin-bottom: 10px;
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    background-color: #ff576b;
    border-radius: 12px;
}

.st-trial-popup .success-message {
    display: none;
    margin-bottom: 10px;
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    background-color: #0964ff;
    border-radius: 12px;
}

.st-trial-popup__button-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    padding: 8px;
    font-weight: 500;
    font-size: 24px;
    line-height: 1;;
    text-align: center;
    color: #c4c4c4;
    cursor: pointer;
}

.st-trial-popup__button-close:hover {
    color: #0964ff;
}

.st-trial-popup__button-close svg {
    display: block;
    width: 32px;
    height: 32px;
}

.st-trial-popup .st-trial-popup__header {
    margin-bottom: 46px;
    padding: 30px 30px 0 30px;
}

.st-trial-popup .st-trial-popup__content {
    margin-bottom: 30px;
    padding: 0 30px;
    max-width: 412px;
    margin: auto;    
}

.st-trial-popup .st-trial-popup__footer {
    padding: 20px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    color: #fff;
    background: #0964ff;
}

.st-trial-popup .st-trial-popup__title {
    margin-bottom: 10px;
    font-size: 42px;
    font-weight: 600;
    line-height: 35px;
    text-align: center;
    color: #272c7d;
}

.st-trial-popup .st-trial-popup__desc {
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
    color: #272c7d;
}

.st-trial-popup .st-trial-popup__images {
    margin-bottom: 36px;
}

.st-trial-popup .st-trial-popup__images img {
    width: 53px;
    height: 53px;
    margin: 0 2px;
}

.st-trial-popup .st-trial-popup__info {
    margin: 50px 0 0 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    color: #272c7d;
}

.st-form-group {
    margin-bottom: 16px;
}

.st-form-group-activation {
    display: none;
}

.st-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #272c7d;
}

.st-form-control {
    display: block;
    width: 100%;
    height: 56px;
    min-width: 100%;
    margin-bottom: 16px;
    padding: 16px 40px 16px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
    background-color: #fff;
    border: 1px solid #cbd6e2;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(14, 38, 86, .12);
    transition: opacity .2s;
}

.st-form-control::placeholder {
    color: rgba(0, 0, 0, .3);
    font-size: 16px;
}

.st-form-control:focus {
    border-color: #3898ec;
    outline: 0;
}

.st-trial-popup-form {
    margin: 0;
    padding: 0;
}