/*///////////////-GENERAL-///////////////*/

@import "https://fonts.googleapis.com/css?family=Roboto";
@import "https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css";

input:focus{outline: none;}
select:focus{outline: none;}
textarea:focus{outline: none;}
a:focus{outline: none;}

::-webkit-input-placeholder{color: #ddd;}
::-moz-placeholder{ color: #ddd;}
:-ms-input-placeholder{color: #ddd;}
:-moz-placeholder{color: #ddd;}

.slider{
    width: 100%;
    height: 2px;
    background: #ccc;
    margin: 0px;
    padding: 0px;
    border: 0px;
    border-top: 5px solid gray;
    border-bottom: 5px solid gray;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-background-clip: padding;
    -webkit-background-clip: padding;
    background-clip: padding-box;
}

.slider span{
    height: 12px;
    width: 12px;
    margin-top: -5px;
    background: #fff;
    border-radius: 100%;
    border: 0px;
    box-sizing: border-box;
    transition: all 100ms ease-in;
}

.slider span:focus{
    outline: 0px;
    box-shadow: 0px 0px 0px 12px rgba(41, 128, 185, 0.3);
}

.slider span:active{
    transform: scale(1.5);
    box-shadow: 0px 0px 0px 0px rgba(41, 128, 185, 0.3);
}

.slider div{
    background: #3498db;
}



label input{ display: none; }

.disabled{
    opacity: 0.5;
    filter: grayscale(100);
}

.radio{
    font-size: 0px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    border: 2px solid white;
    box-shadow: 0px 0px 0px 2px #ccc;
    background: white;
    margin: 2px;
    display: inline-block;
    transition: all 30ms ease-out;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.r-checked{
    background: #3498db;
    box-shadow: 0px 0px 0px 2px #3498db;
}



.checkbox-1{
    font-size: 0px;
    height: 14px;
    width: 14px;
    border-radius: 2px;
    border: 2px solid #ccc;
    background: white;
    display: inline-block;
    position: relative;
    transition: all 30ms ease-out;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-1:before{
    content: "";
    background: none;
    height: 5px;
    width: 10px;
    left: 1px;
    top: 2px;
    border: 2px solid white;
    border-top: 0px solid white;
    border-right: 0px solid white;
    transform: rotate(-45deg);
    position: absolute;
    border-radius: 1px;
}

.c1-checked{
    border-color: #3498db;
    background: #3498db;
}



.checkbox-2{
    font-size: 0px;
    height: 12px;
    width: 28px;
    margin: 3px;
    border-radius: 6px;
    background: #ccc;
    display: inline-block;
    position: relative;
    transition: background 150ms ease-out;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-2-before{
    background: white;
    height: 16px;
    width: 16px;
    position: absolute;
    left: -2px;
    top: -2px;
    border-radius: 100%;
    transition: left 150ms ease-out;
    box-shadow: 0px 0.7px 5px 0px rgba(0, 0, 0, 0.4);
}

.c2-checked{background: #3498db;}
.c2-before-checked{left: 14px;}



.UI-button-1{
    font-family: "Roboto";
    padding: 10px;
    margin: 7px;
    color: white;
    line-height: 15px;
    height: 15px;
    box-sizing: content-box;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    display: inline-block;
    background: #3498db;
    border: none;
    border-radius: 2px;
    transition: all 200ms ease-in-out;
    box-shadow: 0px 2px 2.7px 0px rgba(0, 0, 0, 0.38);
}
.UI-button-1:hover{
    box-shadow: 0px 6px 9px -2px rgba(0, 0, 0, 0.36);
    transform: translateY(-4px);
}



.UI-text-input{
    font-family: "Roboto";
    font-weight: bold;
    height: 15px;
    width: 100px;
    font-size: 14px;
    padding: 10px 0px;
    background: #fff;
    box-sizing: padding-box;
    color: #ccc;
    border: none;
    border-bottom: 2px solid #ccc;
    transition: border 120ms ease-out;
    resize: vertical;
}

.UI-text-input:focus{
    outline: 0px;
    border-color: #3498db;
}



.UI-option-input{
    font-family: "Roboto";
    font-weight: bold;
    height: 35px;
    width: 100px;
    font-size: 14px;
    padding: 10px 0px;
    background: #fff;
    color: #ccc;
    border: none;
    border-bottom: 2px solid #ccc;
    transition: border 120ms ease-out;

    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

.UI-option-input:focus{
    border-color: #3498db;
}

.UI-progress-bar{
    min-width: 150px;
    height: 3px;
    background: #ddd;
    display: inline-block;
    font-size: 0px;
    color: black;
    text-align: center;
    margin: 9px 0px 8px 0px;
    position: relative;
}

.UI-progress-bar-loaded{
    max-width: 100%;
    height: 3px;
    background: #3498db;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: 1s;
}
