﻿body {
}

#searchIcon{
    width: 15px;
}

/* For checkbox switches */
/* The switch - the box around the slider */
.switchBox {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switchBox input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.sliderBox {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .sliderBox:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .sliderBox {
    background-color: #2196F3;
}

input:focus + .sliderBox {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .sliderBox:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.sliderBox.roundBox {
    border-radius: 34px;
}

    .sliderBox.roundBox:before {
        border-radius: 50%;
    }
	
	.validation-summary-valid {
    display:none;
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.k-i-refresh {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.defaultArea {
    width: 98%;
    margin: auto;
}

.buttonBox {
    float: left;
}

    .buttonBox button:first-of-type {
        height: 40px;
        width: 90px;
    }

    .buttonBox button:nth-child(2) {
        margin-left: 10px;
        height: 40px;
        width: 90px;
    }
