/** FONTS **/
@font-face {
    font-family: MontserratMedium;
    src: url("../../Data/Fonts/Montserrat-Medium.ttf") format('truetype');
}

@font-face {
    font-family: Montserrat;
    src: url("../../Data/Fonts/Montserrat-Regular.ttf") format('truetype');
}

body
{
    font-family: MontserratMedium;
    width: 100vw;
    overflow-x: hidden;
    padding-top: 162px;
}

.spaced
{
    padding-top: 20px;
    padding-bottom: 20px;
}

input:focus, textarea:focus, button:focus
{
    box-shadow: none !important;
}

.line
{
    display: block;
    width: 45px;
    height: 1px !important;
    max-height: 1px !important;
    border: 1px solid black;
    transition: all 0.7s;
}

.animated:hover .line
{
    width: 50px !important;
}

.line.expanded
{
    width: 100% !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.VerticalAlignment
{
    padding-left: 90px !important;
    padding-right: 90px !important;
}

@media only screen and (max-width: 990px) {

    .VerticalAlignment
    {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }

    body
    {
        padding-top: 40px;
    }
}

.spaced
{
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.Floating {
    position:relative;
    display:inline-block;
}

.FloatingLabel {
    padding-left: 10px;
    padding-right: 10px;
    pointer-events: none;
    position:absolute;
    left:4;
    top:9;
    transition: 0.2s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity:1;
    font-size: 14px;
    color: #C1C8CE;
    background-color: white;
}


.TxtInput:focus + .FloatingLabel, .TxtInput:not(:placeholder-shown) + .FloatingLabel {
    opacity:1;
    transform: scale(0.60) translateY(-155%) translateX(-40px);
    color: #FF4252;
    left:18px;
}

input[type=text],input[type=password]
{
    max-width: 250px;
    border-color: #C1C8CE;
    border: 2px solid #C1C8CE;
}

input[type=text]:focus,input[type=password]:focus
{
    border-color: #FF4252;
    border: 2px solid #FF4252;
}

.DefaultBtn
{
    min-width: 250px;
    background-color: #E5E8EA;
    color: white;
    transition: 0.2s all;
    font-size: 14px;
}

.DefaultBtn:hover
{
    color: white !important;
}

.DefaultBtn.Red
{
    background-color: #FF6875 !important;
}

.DefaultBtn:hover
{
    background-color:#C1C8CE;
}

.DefaultBtn.Red:hover
{
    background-color: #FF4252 !important;
}

.Tip
{
    font-size: 10px;
    color: #C1C8CE;
    max-width: 250px;
    padding-top: 5px;
}

.SpecialLink
{
    color: #FF4252;
    text-decoration: underline;
}

.SpecialLink:hover
{
    color: #FF4252;
    font-weight: bold;
}

.SpecialLink:visited
{
    color: #7849F4;
}

.SpecialLink:focus
{
    color: #9E0202;
}

.SpecialButton
{
    background-color: transparent;
    border: 0px;
    border-radius: 0px;
    color: red;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    margin: 10px;
}

.SpecialButton .line
{
    margin-top: 3px;
    border: 2px solid red !important;
    border-radius: 3px;
    width: 20px;
    background-color: red;
}

.ProductSmallImage
{
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: cover;
}

.ui-loader
{
    display: none !important;
}