body, html {
    height: 100%;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: 'Asap', sans-serif;
}

.md-shadow {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: inherit;
    pointer-events: none;
}

.md-shadow-bottom-z-1 {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

.md-shadow-bottom-z-2 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}

.md-shadow-animated.md-shadow {
    -webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.md-ripple-container {
    pointer-events: none;
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.md-ripple {
    position: absolute;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0;
    border-radius: 50%;
}

.md-ripple.md-ripple-placed {
    -webkit-transition: margin 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), border 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: margin 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), border 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: margin 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), border 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: margin 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), border 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.md-ripple.md-ripple-scaled {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.md-ripple.md-ripple-active, .md-ripple.md-ripple-full, .md-ripple.md-ripple-visible {
    opacity: .2;
}

.md-ripple.md-ripple-remove {
    -webkit-animation: md-remove-ripple 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: md-remove-ripple 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@-webkit-keyframes md-remove-ripple {
    0% {
        opacity: .15;
    }
    to {
        opacity: 0;
    }
}

@keyframes md-remove-ripple {
    0% {
        opacity: .15;
    }
    to {
        opacity: 0;
    }
}

.md-padding {
    padding: 8px;
}

bdo[dir=rtl] {
    direction: rtl;
}

bdo[dir=ltr], bdo[dir=rtl] {
    unicode-bidi: bidi-override;
}

bdo[dir=ltr] {
    direction: ltr;
}

.material-icons{
    position: relative;
    top: 4px;
}

.btn{
    cursor: pointer;
}

.checkbox {
    position: relative;
}

.checkbox input {
    visibility: hidden;
    height: 20px;
    width: 20px;
}

.checkbox label{
    cursor: pointer;
}

.checkbox input + span {
    margin-left: 10px;
    position: relative;
}

.checkbox input:checked + span:after {
    content: '\e901';
    position: absolute;
    font-family: icomoon;
    left: -30px;
    top: -6px;
    color: #fff;
    height: 10px;
    width: 10px;
    font-size: 20px;
    font-weight: 700;
}

.checkbox span:before {
    position: absolute;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    user-select: none;
    top: -2px;
    left: -30px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.checkbox input:checked + span:before {
    background-color: #00d1fd;
}

.error{
    color: #ff0849;
}

.error .checkbox:before, .error .checkbox span{
    border-color: #ff0849;
}

.error .checkbox span{
    color: #ff0849 !important;
}

.error input, .error select, .error textarea, .error ::placeholder, .error :-ms-input-placeholder, .error ::-ms-input-placeholder{
    border : 1px solid #ff0849;
    color: #ff0849 !important;
}

.error-message {
    margin-top: .2em;
}

.error-intro{
    margin-bottom: 1em;
}

.error-message, .error-intro{
    display: none;
}

form.error .error-message,
form.error .error-intro{
    display: block;
}

form.error input{
    border-color: #ff0849;
    color : #ff0849;
    -webkit-text-fill-color: #ff0849 !important;
}

form.error input:focus{
    box-shadow: inset 0 0 0 1px #ff0849;
    -webkit-box-shadow: inset 0 0 0 1px #ff0849;
}

form.error ::placeholder {
    color: #ff0849;
}

.main-icon-bg {
    position: relative;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.main-icon-subtitle {
    font-size: .8em;
}

.main-icon-title {
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 700;
}

.main-icon-title-container {
    padding-left: 10px;
    text-align: left;
    position: relative;
    top: .1em;
}

@media (max-width: 767px){
    .main-icon-bg {
        width: 70px !important;
        height: 70px !important;
        line-height: 70px !important;
        font-size: 40px !important;
    }
}

@media (min-width: 768px){
    .main-icon-subtitle {
        font-size: 1.2em;
    }

    .main-icon-title {
        font-size: 1.8em;
        text-transform: uppercase;
        font-weight: 700;
    }

    .main-icon-title-container {
        padding-left: 15px;
        text-align: left;
        top: .5em;
    }
}

.main-icon-subtitle, .main-icon-title {
    display: block;
    line-height: 1;
}

.main-icon-bg-light,
.main-icon-bg-light + .main-icon-title-container {
    color: #fff;
}

.main-icon-bg-dark,
.main-icon-bg-dark + .main-icon-title-container {
    color: #000;
}

.main-icon-title-container, .main-icon-bg {
    display: inline-block;
}

.main-icon-bg-light {
    background-image: url("../images/icon-cicle-background-light.svg");
}

.main-icon-bg-dark {
    background-image: url("../images/icon-cicle-background-dark.svg");
}

.dx-calendar-cell:not(.dx-calendar-other-month) .weekend,
.dx-calendar-cell:not(.dx-calendar-other-month) .holyday {
    text-shadow: none;
    font-weight: bold;
}

.dx-calendar-cell:not(.dx-calendar-other-month) .weekend {
    color: #3030FF;
}

.dx-state-disabled.dx-calendar .dx-calendar-cell:not(.dx-calendar-other-month) .weekend {
    color: #8080FF;
}

.dx-calendar-cell:not(.dx-calendar-other-month) .holyday {
    color: #F56E69;
}

.dx-state-disabled.dx-calendar .dx-calendar-cell:not(.dx-calendar-other-month) .holyday {
    color: #FF8080;
}

.green{
    color:green !important;
}