﻿.field-validation-error
{
    color: #ff0000;
}


.field-validation-valid
{
    display: none;
}

.input-validation-error
{
    border: 1px solid #c21717;
    background-color: #ffeeee;
}

.valid
{
    border: 1px solid green;
    background-color: #b1de79;
}

/* Shared */
.loginBtn {
    box-sizing: border-box;
    position: relative;
    /* width: 13em;  - apply for fixed size */
    margin: 0.2em;
    padding: 0 15px 0 46px;
    border: none;
    text-align: left;
    line-height: 34px;
    white-space: nowrap;
    border-radius: 0.2em;
    font-size: 16px;
    color: #FFF;
}
.loginBtn:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 100%;
}
.loginBtn:focus {
    outline: none;
}
.loginBtn:active {
    box-shadow: inset 0 0 0 32px rgba(0,0,0,0.1);
}


/* Facebook */
.loginBtn--facebook {
    background-color: #4C69BA;
    background-image: linear-gradient(#4C69BA, #3B55A0);
    /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
    text-shadow: 0 -1px 0 #354C8C;
}
.loginBtn--facebook:before {
    border-right: #364e92 1px solid;
    background:  url('Images/icon_facebook.png') 6px 6px no-repeat;
}
.loginBtn--facebook:hover,
.loginBtn--facebook:focus {
    background-color: #5B7BD5;
    background-image: linear-gradient(#5B7BD5, #4864B1);
}


/* Google */
.loginBtn--google {
    /*font-family: "Roboto", Roboto, arial, sans-serif;*/
    background: #DD4B39;
}
    .loginBtn--google:before {
        border-right: #BB3F30 1px solid;
        background:  url('Images/icon_google.png') 6px 6px no-repeat;
    }
.loginBtn--google:hover,
.loginBtn--google:focus {
    background: #E74B37;
}

@media (min-width: 992px) {
    .row-md-eq-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .planPage .subscriptionItemCol {
        padding: 0;
    }

    .labelBody>:nth-last-child(2) {
        padding-bottom: 35px;
    }

    .labelBody .planItemFooter {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding-top: 5px;
        padding-bottom: 0px;

    }
}

.labelBody {
    height: 100%;
    background-color: #EDEDED;
    text-align: center;
    border: 1px solid gray;
}
.subscriptionItem input:checked ~ .labelBody {
    background-color: white;
}
.subscriptionItem input:not(:checked) ~ .labelBody {
}
.subscriptionItem {
    height: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.subscriptionItem input:checked ~ .labelBody .subscriptionItemRadioIcon {
    background-image: url(Images/radio-checked-icon.png);
    background-size: contain;
}

.subscriptionItem input:not(:checked) ~ .labelBody .subscriptionItemRadioIcon {
    background-image: url(Images/radio-icon.png);
    background-size: contain;
}

.subscriptionItem {
    width: 100%;
}

.subscriptionItemRadioIcon {
    width: 10px;
    height: 10px;
    margin: 0 auto;
    cursor: pointer;
}

.labelBody > * {
    margin: 5px;
    padding: 5px;
}

.labelBody > *:not(:first-child) {
    border-top: 1px solid gray;
}

.planPriceSign {
    vertical-align: top;
    font-size: 20px;
}

.planPriceValue {
    font-size: 40px;
}

.planInterval {
    font-size: 10px;
    color: gray;
}


.subscriptionItem input:checked ~ .labelBody .planItemPrice .planPriceSign,
.subscriptionItem input:checked ~ .labelBody .planItemPrice .planPriceValue {
    color: aquamarine;
}

.planItemHeader {
    --font-weight: bold;
    font-size: 25px;
}

.currentPlanLabel {
    color: gray;
    font-size: 12px;
}

.planPageSelectorItem {
    text-align: center;
}


.ajax_loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: -60px 0 0 -60px;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.beta-label {
    background-color: #cda34f;
    color: #ededed;
    font-size: 7pt;
    vertical-align: 3px;
    padding: 0px 2px;
}

.title-h1-home {
    text-align: center;
    color: #6d9eab;
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-style: italic;
}

.title-h1 {
    font-size: 26px;
    margin-bottom: 20px;
}