﻿@font-face {
    font-family: 'BebasNeueRegular';
    src: url("font/BEBAS.woff2") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    height: 100%;
    padding: 0px;
}

html {
    height: 100%;
}


/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 1600px;
}

.visiblitiyHidden {
    visibility: hidden;
}


.float-label-control {
    position: relative;
    margin-bottom: 1.5em;
}
    /*.float-label-control ::-webkit-input-placeholder { color: transparent; }
.float-label-control :-moz-placeholder { color: transparent; }
.float-label-control ::-moz-placeholder { color: transparent; }
.float-label-control :-ms-input-placeholder { color: transparent; }*/
.float-label-control input:-webkit-autofill,
.float-label-control textarea:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -moz-box-shadow: 0 0 0 1000px white inset !important;
    box-shadow: 0 0 0 1000px white inset !important;
}

.float-label-control input, .float-label-control textarea, .float-label-control label {
    font-size: 1.3em;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.float-label-control input:focus,
.float-label-control textarea:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-bottom-width: 2px;
    padding-bottom: 0;
}

.float-label-control textarea:focus {
    padding-bottom: 4px;
}

.float-label-control input, .float-label-control textarea {
    display: block;
    width: 100%;
    padding: 0.1em 0em 1px 0em;
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid #aaa;
    outline: none;
    margin: 0px;
    background: none;
}

.float-label-control textarea {
    padding: 0.1em 0em 5px 0em;
}

.float-label-control label {
    position: absolute;
    font-weight: normal;
    top: -1.0em;
    left: 0.08em;
    color: #aaaaaa;
    z-index: -1;
    font-size: 0.85em;
    -moz-animation: float-labels 300ms none ease-out;
    -webkit-animation: float-labels 300ms none ease-out;
    -o-animation: float-labels 300ms none ease-out;
    -ms-animation: float-labels 300ms none ease-out;
    -khtml-animation: float-labels 300ms none ease-out;
    animation: float-labels 300ms none ease-out; /* There is a bug sometimes pausing the animation. This avoids that.*/
    animation-play-state: running !important;
    -webkit-animation-play-state: running !important;
}

.float-label-control input.empty + label,
.float-label-control textarea.empty + label {
    top: 0.1em;
    font-size: 1.5em;
    animation: none;
    -webkit-animation: none;
}

.float-label-control input:not(.empty) + label,
.float-label-control textarea:not(.empty) + label {
    z-index: 1;
}

.float-label-control input:not(.empty):focus + label,
.float-label-control textarea:not(.empty):focus + label {
    color: #aaaaaa;
}

.float-label-control.label-bottom label {
    -moz-animation: float-labels-bottom 300ms none ease-out;
    -webkit-animation: float-labels-bottom 300ms none ease-out;
    -o-animation: float-labels-bottom 300ms none ease-out;
    -ms-animation: float-labels-bottom 300ms none ease-out;
    -khtml-animation: float-labels-bottom 300ms none ease-out;
    animation: float-labels-bottom 300ms none ease-out;
}

.float-label-control.label-bottom input:not(.empty) + label,
.float-label-control.label-bottom textarea:not(.empty) + label {
    top: 3em;
}


@keyframes float-labels {
    0% {
        opacity: 1;
        color: #aaa;
        top: 0.1em;
        font-size: 1.5em;
    }

    20% {
        font-size: 1.5em;
        opacity: 0;
    }

    30% {
        top: 0.1em;
    }

    50% {
        opacity: 0;
        font-size: 0.85em;
    }

    100% {
        top: -1em;
        opacity: 1;
    }
}

@-webkit-keyframes float-labels {
    0% {
        opacity: 1;
        color: #aaa;
        top: 0.1em;
        font-size: 1.5em;
    }

    20% {
        font-size: 1.5em;
        opacity: 0;
    }

    30% {
        top: 0.1em;
    }

    50% {
        opacity: 0;
        font-size: 0.85em;
    }

    100% {
        top: -1em;
        opacity: 1;
    }
}

@keyframes float-labels-bottom {
    0% {
        opacity: 1;
        color: #aaa;
        top: 0.1em;
        font-size: 1.5em;
    }

    20% {
        font-size: 1.5em;
        opacity: 0;
    }

    30% {
        top: 0.1em;
    }

    50% {
        opacity: 0;
        font-size: 0.85em;
    }

    100% {
        top: 3em;
        opacity: 1;
    }
}

@-webkit-keyframes float-labels-bottom {
    0% {
        opacity: 1;
        color: #aaa;
        top: 0.1em;
        font-size: 1.5em;
    }

    20% {
        font-size: 1.5em;
        opacity: 0;
    }

    30% {
        top: 0.1em;
    }

    50% {
        opacity: 0;
        font-size: 0.85em;
    }

    100% {
        top: 3em;
        opacity: 1;
    }
}

/*=============================================================================================================Create Account signup and products pages related styles*/
.headerKradle {
    border-bottom: solid;
    border-bottom-width: 1px;
    border-bottom-color: #338ECF;
    background: #0087d8
}

.kradleHeaderLogo {
    color: #fff;
    position: relative;
    top: -5px;
}

.kradleHeaderLogo img {
    position: relative;
    top: -2px;
}

.kradleProductPurchase {
    color: #737373;
}

ul.productFeaturesList {
    padding-left: 0;
}

ul.productFeaturesList li {
    list-style: none;
    text-align: center;
}

.kradleProductPurchase h2 {
    color: #333;
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
}

.kradleProductPurchase .btn-primary {
    background-color: #0087d8;
}

.subfeature-list {
    font-size: 13px;
    color: #737373;
}

.js-featureList {
    padding: 10px 0;
}

.js-featureList ul {
    margin-left: 0;
    padding-left: 10px;
}

.backToProductversions {
    color: #fff;
}

.g-recaptcha > div {
    margin: auto;
}

.loginLayout li a {
    color: #fff;
}

.loginLayout li a:hover {
    background: none;
    color: #eaeef1;
}

.readMe {
    width: 50px;
    height: 50px;
    position: relative;
    background: url("../images/read_me.svg") no-repeat;
    cursor: pointer;
}

.regContactDetailsReadMe {
    top: -42px;
    right: -312px;
}

.regAdminDetailsReadMe {
    top: -42px;
    right: -312px;
}

.readMe .readMeInfo {
    width: 300px;
    min-height: 100px;
    font-size: 13px;
    position: absolute;
    cursor: default;
}

.readMe .avoidDrag {
    /*background: #f78f8f;*/
    background: #f9dede;
    border-color: #c74343;
    color: #c74343;
}

.readMe .bladeInfoContent .clse {
    color: #6b0a0a;
}


.regAdminDetailsReadMe .readMeInfo {
    top: 50px;
    right: 5px;
}

.regContactDetailsReadMe .readMeInfo {
    top: 50px;
    right: 5px;
}


.bladeInfoIcon {
    width: 25px;
    position: absolute;
    right: 23px;
    top: 77px;
    text-align: center;
    cursor: pointer;
}

a.bladeInfoIconTrigger {
    width: 18px;
    height: 25px;
    display: block;
    background: url("../images/blade-info-trgr-icon.svg") no-repeat;
}

a.bladeInfoIconTrigger:hover {
    background: url("../images/blade-info-trgr-icon-hvr.svg") no-repeat;
}

.bladeInfo {
    position: absolute;
    top: 154px;
    right: 41px;
    z-index: 2;
    width: 540px;
    min-height: 200px;
    opacity: 0;
    display: flex;
    align-items: stretch;
    font-size: 12px;
    -webkit-box-shadow: 2px 2px 1px 0px rgba(23,128,209,.2);
    -moz-box-shadow: 2px 2px 1px 0px rgba(23,128,209,.2);
    box-shadow: 2px 2px 1px 0px rgba(23,128,209,.2);
}

.bladeInfoContent {
    padding: 20px 10px;
    position: relative;
}

.blade .bladeInfo h2 {
    margin-left: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.iconContainer {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 80%, 60%;
    padding: 0 3px;
    /*display: flex;
        align-items: center;*/
    flex: 0 0 45px;
    background-color: #0087d8;
    background-image: url("../images/blade-info-icon.svg");
    cursor: move;
}

.iconContainer.moveBg {
    background-position: 50% 50%, 50% 25px;
    background-image: url("../images/blade-info-icon.svg"), url("../images/move-icon.svg");
}

.avoidDrag {
    background: #f0f8fd;
    border-right: #0087d8 2px solid;
    flex: 1 1 auto;
}

.bladeInfoContent p {
    margin: 0;
    text-align: justify;
}

.bladeInfoContent .clse {
    position: absolute;
    top: 10px;
    right: 10px;
    text-decoration: underline;
}

.bladeInfoGlow {
    /*box-shadow: 0 0 6px rgba(35, 173, 255, 1);*/
    box-shadow: 0 0 6px rgba(0, 225, 245, 1);
}

.bladeInfoContent .clse:hover {
    text-decoration: none;
}

.bladeInfo.managementBladeInfo {
}

.k-list > .k-state-selected, .k-state-selected, .k-slider-selection, .k-button.k-state-active:hover, .k-state-selected:link, .k-draghandle.k-state-selected:hover {
    background-color: #0087d8;
    border-color: #0087d8;
}

.k-list > .k-state-focused.k-state-selected, .k-state-focused.k-state-selected {
    -webkit-box-shadow: inset 0 0 3px 1px #0087d8;
    box-shadow: inset 0 0 3px 1px #0087d8;
}


/*============================================*/

.allProductContainer {
    display: flex;
    flex-direction: row;
    height: 420px;
    margin-bottom: 40px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.productContainer {
    background: white;
    flex-grow: 1;
    flex-basis: 0;
    text-align: center;
    border: white 10px solid;
    position: relative;
    font-family: 'Lato',sans-serif;
}

.productContainer:hover {
    border: #0087d8 10px solid;
}

.productContainer h2 {
    color: #00b2d2;
    font-size: 20px;
}

.productContainer .price {
    font-family: 'BebasNeueRegular', 'Century Gothic';
    font-size: 60px;
}

p.productDescription {
    height: 80px;
    font-size: 18px;
    font-weight: bold;
    padding: 0 20px;
}

#showhideBtn {
    border-radius: 0;
}

.productFeatures {
    display: flex;
    flex-direction: row;
    height: 260px;
    margin-bottom: 50px;
}

.productFeatures ul {
    flex-grow: 1;
    flex-basis: 0;
    list-style: none;
}

.productFeatures ul li {
    margin-bottom: 15px;
    font-family: 'Lato',sans-serif;
    font-weight: bold;
    padding-left: 45px;
}


.SelectedProduct {
    /*background: #f5f4f4;*/
    color: white !important;
    background-image: linear-gradient(to right, #0391d8, #12cfd5);
    /*border:#0087d8 10px solid;*/
}

.SelectedProduct.productContainer h2 {
    color: white !important;
}

.mostPopular {
    background: #0087d8;
    color: white;
    width: 150px;
    height: 35px;
    line-height: 35px;
    position: absolute;
    top: -29px;
    left: 59px;
    font-family: 'BebasNeueRegular', 'Century Gothic';
    word-spacing: 3px;
}

.signupTitle {
    display: flex;
    position: relative;
}

.signupTitle h3 {
    margin-bottom: 45px;
}

.titleInfo {
    padding: 24px 0 0 10px;
}

.titleInfoType .infoBox {
    position: absolute;
    z-index: 10;
    width: 250px;
    font-size: 12px;
}

.copyAccHolderDetails {
    position: absolute;
    top: 50px;
}

.productContainer h2 {
    font-family: 'BebasNeueRegular', 'Century Gothic';
    letter-spacing: 1px;
    word-spacing: 5px;
}

.showMoreProductDetails {
    font-family: 'BebasNeueRegular', 'Century Gothic';
    text-transform: uppercase;
    width: 190px;
    border-radius: 0;
    word-spacing: 2px;
}

.selectedProdSummary {
    font-family: 'Lato',sans-serif;
}

.selectedProdSummary h3 {
    font-size: 14px;
    font-weight: bold;
}

#selectedPlanName {
    text-transform: capitalize;
}

/*Signup*/
.agreeCheckboxContainer {
    width: 30px;
    height: 30px;
    float: left
}

.agreeCheckboxContainer input[type=checkbox] {
    width: 20px;
    height: 20px;
    margin-top: 0
}

.agreeLabelContainer {
    width: 300px;
    float: left
}
