/**
 *-------------------------------------------------------------------
 * Author        : Atanu Pramanik(dos.atanu@gmail.com)
 * Creation Date : 21/APR/2017
 * Dependency    : OpenSans-Regular fonts
 * Description   : Default|| Header,footer related CSS
 * Execute like  : NA
 * @copyright    : Atanu Pramanik,2017
 *-------------------------------------------------------------------
 */

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans';
    font-size: 14px;
}

html,
body {
    width: 100%;
    height: 100%;
    color: #636b6f;
    background-color: #f5f8fa;
}


/**
 *---------------------------------------------
 * Page loading || Ajax call page load style
 *---------------------------------------------
 */

#lodding {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/loading.gif) no-repeat 50% 50%, #fff;
    z-index: 999999;
}

#lodding1 {
    display: none;
}

.lodding-show {
    display: inline-block !important;
}


/**
 *-----------------------------
 *  Header style 
 *-----------------------------
 */
.navbar {
    height: 52px;
    font-family: Montserrat, sans-serif;
    background-color: #fff;
    border-color: #d3e0e9;
    margin-bottom: 0px !important;
    border-radius: 0px;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
}
.navbar-right {
    margin-right: 10px;
    margin-left: auto;
}
.navbar-brand >span {
    top: 0px;
    left: 393px;
    font-size: 10px;
    color: #80ced6;
    position: absolute;
}

.side-panel-icon {
    cursor: pointer;
    display: block !important;
    padding-top: 14px !important;
}

.nav .dropdown-toggle {
    min-width: 160px;
}

@media(max-width: 550px) {
    .navbar-brand {
        font-size: 14px;
    }
    .navbar-brand >span {
        left: 230px;
    }
}
/**
 *-------------------------------------
 * Override legend style with bootstrap
 *-------------------------------------
 */
fieldset {
    width: 100%;
    border: 1px solid silver;
    padding: 2px 10px 10px;
    border-radius: 3px;
}

legend {
    padding: 3px;
    width: auto;
    margin-bottom: 0px;
    border: 0px; 
    
}
fieldset > label {
  padding: 4px;
}
fieldset > label >input[type="radio"] {

  margin-right: 4px;
}
button.close {
    padding: 1px 3px;
    border: 1px solid #678;
    border-radius: 2px;
    opacity: 0.7;
}
/**
 *------------------------------------
 *  Main body content style
 *------------------------------------
 */
.loginpage ,
.registrationpage, 
.reset ,
.email{
    width: 100%;
    min-height: 450px;
    padding-top: 100px;
    height: 96% !important;
}
.base {
    width: 100%;
    min-height: 480px;
    height: 100% !important;
    padding-left: 64px;
    /*background-color: #f5f8fa;*/
    /*background-color: #e5e6e6;*/
}
@media (min-width: 1200px) {
    .menubar-pin > .base {
        padding-left: 240px;
    }
}

@media(max-width: 360px){
    .navbar-brand {
        font-size: 14px !important;
    }
}
/**
 *-------------------
 * Other style
 *-------------------
 */
.dialog-container {
    display: none;
}
.dataTables_wrapper .btn {
    margin-left: 10px;
    margin-bottom: 3px;
}
.note-editable ul,
.note-editable ol,
.note-editable li {
    margin-left: 25px;
}
/**
 *-----------------------------
 * style of Error message 
 *-----------------------------
 */
.message {
    box-shadow: 3px 4px 2px #888888;
}
/**
 *----------------------------
 * All heading related box
 *----------------------------
 */
.heading {
    /*background-color: #fff;*/
    background-color: rgba(120, 209, 218, 0.2);
    border-left: 4px solid #4CAF50;
}
/**
 *----------------------------------------
 * File upload input style
 *----------------------------------------
 */
.ace-icon {
    text-align: center
}

.ace-file-input {
    display: block;
    font-size: inherit;
    position: relative;
    height: 30px
}

.ace-file-input input[type=file] {
    position: absolute;
    z-index: -999;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    filter: alpha(opacity=0)
}

.ace-file-input input[type=file]:focus {
    outline: 0
}

.ace-file-input .ace-file-container {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background-color: #FFF;
    border: 1px solid #D5D5D5;
    cursor: pointer;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s
}

.ace-file-input .ace-file-container:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #F59942
}

.ace-file-input .ace-file-container:before {
    display: inline-block;
    content: attr(data-title);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    line-height: 24px;
    text-align: center;
    padding: 0 8px;
    background-color: #6FB3E0;
    color: #FFF;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid #FFF;
    border-left-width: 4px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.ace-file-input .ace-file-container .ace-file-name {
    display: inline-block;
    height: 28px;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    line-height: 28px;
    color: #888;
    font-size: 13px;
    vertical-align: top;
    position: static;
    padding-left: 30px
}

.ace-file-input .ace-file-container .ace-file-name:after {
    display: inline-block;
    content: attr(data-title)
}

.ace-file-input .ace-file-container.selected {
    right: 16px
}

.ace-file-input .ace-file-container.selected .ace-file-name {
    color: #666
}

.ace-file-input .ace-file-container .ace-icon {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    line-height: 24px;
    width: 26px;
    text-align: center;
    font-family: FontAwesome;
    font-size: 13px;
    border: 2px solid #FFF;
    color: #FFF;
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
    background-color: #D1D1D1
}
.ace-file-input a:hover {
    text-decoration: none
}

.ace-file-input .remove {
    position: absolute;
    right: -8px;
    top: 6px;
    display: none;
    width: 17px;
    text-align: center;
    height: 17px;
    line-height: 15px;
    font-size: 11px;
    font-weight: 400;
    background-color: #FB7142;
    border-radius: 100%;
    color: #FFF;
    text-decoration: none
}
.ace-file-input .ace-file-container.hide-placeholder:before {
    display: none
}
.ace-file-input .ace-file-container.selected+.remove {
    display: inline-block
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .ace-file-input input[type=file] {
        position: absolute;
        width: 0;
        height: 0
    }
}

.ace-file-multiple {
    height: auto
}

.ace-file-multiple .ace-file-container {
    position: relative;
    height: auto;
    border: 1px dashed #AAA;
    border-radius: 4px;
    text-align: center
}

.ace-file-multiple .ace-file-container:before {
    display: inline-block;
    content: attr(data-title);
    position: relative;
    right: 0;
    left: 0;
    margin: 16px;
    line-height: 32px;
    background-color: #FFF;
    color: #CCC;
    font-size: 18px;
    font-weight: 700;
    border-width: 0;
}

.ace-file-multiple .ace-file-container.selected .ace-file-name .ace-icon {
    display: inline-block;
    left: 0;
    top: 0;
    bottom: 0;
    width: 26px;
    text-align: center;
    font-family: FontAwesome;
    font-size: 13px;
    border: 2px solid #FFF;
    color: #FFF;
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s
}

.ace-file-multiple .ace-file-container .ace-file-name {
    position: relative;
    display: block;
    padding: 0;
    height: auto;
    width: auto;
    max-width: 100%;
    margin: 0 4px;
    border-bottom: 1px solid #DDD;
    text-align: left
}

.ace-file-multiple .ace-file-container .ace-file-name:first-child {
    margin-top: 1px
}

.ace-file-multiple .ace-file-container .ace-file-name:last-child {
    border-bottom-width: 0;
    margin-bottom: 1px
}

.ace-file-multiple .ace-file-container .ace-file-name img {
    padding: 2px;
    border: 1px solid #D7D7D7;
    background-color: #FFF;
    background-repeat: no-repeat;
    background-position: center;
    margin: 4px 8px 4px 1px
}

.ace-file-multiple .ace-file-container .ace-file-name:after {
    display: none
}

.ace-file-multiple .ace-file-container.selected .ace-file-name:after {
    display: inline-block;
    white-space: pre
}

.ace-file-multiple .ace-file-container .ace-file-name img+.ace-icon,
.ace-file-multiple .ace-file-container.selected .ace-file-name img+.ace-icon {
    display: none
}

.ace-file-multiple .remove {
    right: -11px;
    top: -11px;
    border: 3px solid #BBB;
    border-radius: 32px;
    background-color: #FFF;
    color: red;
    width: 23px;
    height: 23px;
    line-height: 16px
}

.input-group .input-group-addon,
.input-group>.btn {
    border-radius: 0!important
}

.ace-file-multiple .ace-file-container.selected+.remove:hover {
    border-color: #F4C0B1
}

.ace-file-multiple .ace-file-overlay {
    position: absolute;
    top: -12px;
    bottom: -6px;
    left: -12px;
    right: -12px
}

.ace-file-multiple .ace-file-overlay>.overlay-content {
    top: 20%
}

.ace-file-multiple .ace-file-container .ace-file-name .ace-icon {
    position: relative;
    display: block;
    text-align: center;
    height: auto;
    line-height: 90px;
    width: auto;
    font-size: 80px;
    color: #D5D5D5;
    margin: 4px 0;
    background-color: transparent;
}

.ace-file-multiple .ace-file-container.selected:after {
    display: none
}

.ace-file-multiple .ace-file-container.selected .ace-file-name .ace-icon {
    position: relative;
    margin-right: 4px;
    margin-left: 2px;
    line-height: 24px
}

.ace-file-multiple .ace-file-container .ace-file-name.large {
    text-align: center;
    border-bottom: 1px solid #222;
    margin: 0 1px 3px
}

.ace-file-multiple .ace-file-container .ace-file-name.large:last-child {
    margin: 0 1px
}

.ace-file-multiple .ace-file-container .ace-file-name.large:after {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 4px;
    background-color: #555;
    color: #FFF;
    opacity: .8;
    filter: alpha(opacity=80)
}

.ace-file-multiple .ace-file-container .ace-file-name.large img {
    border-width: 0;
    margin: 0!important;
    padding: 0
}

.ace-file-multiple input[type=file].disabled+.ace-file-container:hover,
.ace-file-multiple input[type=file][disabled]+.ace-file-container:hover,
.ace-file-multiple input[type=file][readonly]+.ace-file-container:hover {
    border-color: #AAA
}

.ace-file-multiple input[type=file].disabled+.ace-file-container:before,
.ace-file-multiple input[type=file][disabled]+.ace-file-container:before,
.ace-file-multiple input[type=file][readonly]+.ace-file-container:before {
    background-color: transparent
}

.ace-file-multiple input[type=file].disabled+.ace-file-container .ace-icon,
.ace-file-multiple input[type=file][disabled]+.ace-file-container .ace-icon,
.ace-file-multiple input[type=file][readonly]+.ace-file-container .ace-icon {
    border-color: #EEE
}
/*
.form-group.has-success .input-group .input-group-addon {
    border-color: #9cc573
}

.form-group.has-error .input-group .input-group-addon {
    border-color: #f2a696
}

.form-group.has-warning .input-group .input-group-addon {
    border-color: #e3c94c
}

.form-group.has-info .input-group .input-group-addon {
    border-color: #72aec2
}
*/
/**
 *-----------------------------------------------
 * Page Loading Style [On Ajax Responce]
 *-----------------------------------------------
 */
.splash {
  position: fixed;
  z-index: 2000;
  background: white;
  background-color: rgba(0, 0, 0, 0.51);
  color: gray;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.splash-title {
  text-align: center;
  max-width: 500px;
  margin: 15% auto;
  padding: 20px;
}
.splash-title h1 {
  font-size: 26px;
}

.spinner {
  margin: 90px auto;
  width: 60px;
  height: 50px;
  text-align: center;
  font-size: 15px;
}
.spinner > div {
  background-color: #62cb31;
  height: 100%;
  width: 8px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}