﻿/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 18px;
}
/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(189, 27, 27);
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #3fb11d;
}

input:focus + .slider {
    box-shadow: 0 0 1px #248009;
}

input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 25px;
}

.slider.round:before {
    border-radius: 50%;
}

/*

<!-- Rectangular switch -->
<label class="switch">
    <input type="checkbox">
    <span class="slider"></span>
</label>

<!-- Rounded switch -->
<label class="switch">
    <input type="checkbox">
    <span class="slider round"></span>
</label>

*/


/* Color ITNetworks */
.btn-itns {
    color: #fff;
    background-color: #20314a;
    border-color: #20314a;
}
.btn-itns:hover {
    color: #fff;
    background-color: #20314a;
    border-color: #20314a;
}
.btn-check:focus + .btn-itns, .btn-itns:focus {
    color: #fff;
    background-color: #20314a;
    border-color: #20314a;
    box-shadow: 0 0 0 0.25rem rgba(32, 49, 74, 0.5);
}
.btn-check:checked + .btn-itns, .btn-check:active + .btn-itns, .btn-itns:active, .btn-itns.active, .show > .btn-itns.dropdown-toggle {
    color: #fff;
    background-color: #20314a;
    border-color: #20314a;
}
.btn-check:checked + .btn-itns:focus, .btn-check:active + .btn-itns:focus, .btn-itns:active:focus, .btn-itns.active:focus, .show > .btn-itns.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(32, 49, 74, 0.5);
}
.btn-itns:disabled, .btn-itns.disabled {
    color: #fff;
    background-color: #20314a;
    border-color: #20314a;
}


.form-control-input {
    width: 25%;
    padding: 0.375rem 0.75rem;
    line-height: 1.8;
    color: #ffffff;
    background-color: #20314a;
    border-width: 1px 0;
    font-size: 0.9rem;
    font-weight: 400;
    border-bottom-width: 3px;
    background-clip: padding-box;
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.alert-message {
    color: #131452;
    background-color: #5eafe6;
    border-color: #114a70;
}
