﻿



@media screen and (min-width: 0px) and (max-width: 767px) {
  #nav-bar-phone{ display: block; }  /* show it on smaller screen */
    #large-screen {display:none;}
    #sidebar{display:block;}
}

@media screen and (min-width: 767px){
  #nav-bar-phone{ display: none; }   /* hide it on larger screens */
  #large-screen {display:block;}
  #sidebar{display:none;}
}


@media screen and (min-width: 375px) and (max-width: 767px) {
    .largeModal {
             width: 400px !important;
    }

}

@media screen and (min-width: 993px) {
    .modal-dialog {
        width: 993px !important;
    }
}


@media screen and (min-width: 0px) and (max-width: 375px) {
    .largeModal {
             width: 379px !important;
    }
}


#nav-bar-phone{
    text-align:right;
}

#nav-bar-phone label {
    margin-top:20px;
}

.margin-t20{
    margin-top:20px;
}

.margin-t10{
    margin-top:10px;
}

.margin-r20{
    margin-right:20px;
}



/**

    SIDE BAR MENU START

*/

	/*Position and style for the sidebar*/ 
		
            .sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
background-image: linear-gradient(#4a90da, #a2c1e4);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}
		
.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}


.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    font-size: 36px;
}

.li-class{
    font-size:18px;
}

.li-class a {
    font-size:18px;
}

.li-class ul li a{
   font-size: 18px !important;
}

.li-class ul li {
    padding-bottom: 5px;
}

.drop-container{
    background-color: #c4d6e2 !important;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
 background-color: #1c5b98;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color: #444;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 60px;}
  .sidebar a {font-size: 18px;}
}

        .padding-l15{
            padding-left:15px;
        }