﻿
/* Set width on the form input elements since they're 100% wide by default */

.validation-summary-errors {
    color: red !important;
}
.field-validation-error {
    color: red !important;
}

.white-box {
    background: #fff;
    margin-bottom: 30px;
    border-radius: 0;
    box-shadow: 0 0 6px rgba(0,0,0,0.07);
    padding: 25px;
    height: calc(100% - 30px);
    width: 100%;
    position: relative;
}
.search-box-new i {
    position: absolute;
    top: 12px;
    right: 9px;
}
.search-box-new {
    max-width: 400px;
}
.search-box-new {
    position: relative;
}

.media-details {
    background-color: #f5f5f5;
}
.media-details span {
    padding-left:10px;
}
/*------------------validation messages start  --------------------*/
.main-validation.errorMessage, .main-validation.warningMessage, .main-validation.successMessage {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.11);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.11);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.11);
    background: #ef5b54;
    color: #fff;
    border-color: #ef5b54;
    border-radius: 5px;
    top: 20px;
    right: 20px;
    padding: 15px 33px 15px 54px;
}

.main-validation .mdi-close {
    top: 5px;
    right: 6px;
    font-size: 17px;
    color: #fff;
}

.main-validation.errorMessage:before, .main-validation.warningMessage:before, .main-validation.successMessage:before {
    content: "\f071";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 23px;
    color: #fff;
    position: absolute;
    left: 16px;
    top: 14px;
}

.main-validation.warningMessage {
    background: #f7bd13;
    border-color: #f7bd13;
}

    .main-validation.warningMessage:before {
        content: "\f071";
    }

.main-validation.successMessage {
    background: #4acec3;
    border-color: #4acec3;
}

    .main-validation.successMessage:before {
        content: "\f058";
    }

.main-validation i.fa {
    position: absolute;
    right: 5px;
    top: 5px;
}

/*validation*/
.main-validation {
    background: #f3d0d0;
    border: 2px solid #efb0b0;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100%;
    max-width: 300px;
    z-index: 9999;
    padding: 10px 20px 10px 10px;
    cursor: pointer;
    color: #000;
}

    .main-validation .mdi-close {
        color: #c76c6c;
        position: absolute;
        top: 2px;
        right: 6px;
        font-size: 14px;
        font-weight: bold;
    }

    .main-validation p {
        margin: 0;
    }

.red {
    color: #ff0000;
}

.main-validation {
    position: fixed;
    right: 0;
    top: 0px;
}
/*------------------validation messages end  --------------------*/
/*------------------Check box --------------------*/
.custom-chk-box input[type=checkbox] {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
}

    .custom-chk-box input[type=checkbox] + input + label {
        display: inline-block;
        width: 100%;
        height: 18px;
        padding-left: 27px;
        background-position: 0 0;
        background-repeat: no-repeat;
        line-height: 19px;
        cursor: pointer;
    }

    .custom-chk-box input[type=checkbox]:checked + input + label {
        background-position: left -18px;
    }

.custom-chk-box label {
    background-image: url(../images/chkbox.png);
    background-size: 18px;
    margin-bottom: 11px;
}