/* Custom color */
  .bg-custom{
      /* background-image: linear-gradient(144deg,#5B42F3, #5B42F3 50%,#00DDEB); */
      background-image: #2b26c8;
  }
/* End Custom color*/

.transparent-input {
   background-color: rgba(0, 0, 0, 0);
   border:none;
}
/* End custom input */

/* Custom Button */

/* CSS */
.button-custom {
  align-items: center;
  /*background-image: linear-gradient(144deg,#5B42F3, #5B42F3 50%,#00DDEB);*/
  background-image: #2b26c8;
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  font-size:15px;
  color: #FFFFFF;
  font-family: Phantomsans, sans-serif;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 100px;
  padding: 15px 10px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.button-custom:active,
.button-custom:hover {
  outline: 0;
}

@media (min-width: 768px) {
  .button-custom {
    min-width: 135px;
  }
}
/* End Custom Button */

/* Sidebar */

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  border: 1px solid #f1f1f1;
  box-shadow: 3px 0 5px -2px #E5E7E9;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 17px;
  color: #000;
  display: block;
  transition: 0.3s;

}

.sidenav a:hover {
  background-color: #E5E7E9;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

@media screen and (min-width: 768px) {
  .sidenav {
      height: 100%;
      width: 350px;
      position: fixed;
      z-index: 10000;
      top: 0;
      left: 0;
      background-color: #fff;
      overflow-x: hidden;
      transition: 0.5s;
      padding-top: 60px;
    }
    #closeBtn{
        
        visibility:hidden;
        
    }
    #openNav{
        
        visibility:hidden;
        
    }
    #main{
        margin-left:350px;
    }
    
    #navbar{
        margin-left:350px;
    }
}

/* End Sidebar */


/* Check box */
input[type=checkbox] + label {
  display: block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label:before {
  content: "\2714";
  border: 0.1em solid #000;
  border-radius: 0.2em;
  display: inline-block;
  width: 1em;
  height: 1em;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 0.2em;
  vertical-align: bottom;
  color: transparent;
  transition: .2s;
}

input[type=checkbox] + label:active:before {
  transform: scale(0);
}

input[type=checkbox]:checked + label:before {
  background-color: MediumSeaGreen;
  border-color: MediumSeaGreen;
  color: #fff;
}

input[type=checkbox]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}

input[type=checkbox]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}

/* End checkbox */

.btn-custom{
    border-radius:0px;
    background-color:#fff;
    color:#194AE8;
    margin-bottom:2px;
    margin-bottom:3px;
}

.btn-custom:hover{
    background-color:#e0e0e0;
    color:#194AE8;
}
.marginTop15{
    margin-top:15px;   
}
.margin-top-50{
    margin-top:50px;   
}
.marginLeft15{
    margin-left:15px;   
}
.align-left{
    text-align:left;
}
.fontSize20{
    font-size:20px;
}

.round-5px{
    border-radius:5px;
}

.table_white{
    border:white;
    color:white;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}
.text-align-center{
    text-align:center;
}
.text-decoration-none{
    text-decoration:none;
    color:black;
}
.text-decoration-none-blue{
    text-decoration:none;
    color:#194AE8;
}
.text-decoration-none-white{
    text-decoration:none;
    color:#fff;
}
.text-decoration-none-white:hover{
    color:#fff;
}
.width350{
    width:350px;
}
.white{
    color:#fff;
}

@media screen and (max-width: 512px) {
    
    .responsive-title{
        text-align: left;
        font-size: 24px;
    }
}
