/**
@author: Allan Amevor
*/

  /* Create two equal columns that floats next to each other */
  .pc-column {
    box-sizing: border-box;
    float: left;
    width: 50%;
    padding: 10px;
    height: auto /* Should be removed. Only for demonstration */
  }

  .pc-row{
    display: block;
    box-sizing: border-box;
  }
  .pc-row:after {
    content: "";
    display: table;
    clear: both;
  }

  @media screen and (max-width: 900px) {
    .pc-column {
      width: 100%;
      display: block;
    }
  }

  .pc-info {
    background-color: #e7f3fe;
    border-left: 6px solid #2196F3;
    margin-bottom: 15px;
    padding: 4px 12px;
  }

    .pc-code {
      display: block;
      padding: 20px;
      width: 100%;
      overflow-x: auto;
    }

.pc-overlay-md {
    position: fixed;
    z-index:100000;
    padding: 20px;
    background-color: #eee;
    box-sizing: border-box;
    padding: 45px 20px 20px 20px;
    display: none;
  }

  .pc-overlay-inner{
    position: relative;
    display: block;
    width: 100%; 
    height: auto;
    padding: 10px 10px 10px 10px;
    overflow-y: auto;
    height: 400px;
  }

  .righttop {
    position: absolute;
    top: 5px;
    right: 5px;
  }

  .rightbottom {
    position: absolute;
    bottom: 5px;
    right: 5px;
    margin-right: 20px;
  }

  .boxshadow {
    -webkit-box-shadow: 0 10px 6px -6px #777;
    -moz-box-shadow: 0 10px 6px -6px #777;
    box-shadow: 0 10px 6px -6px #777;
  }

  /* Button */
  .wrc-btn {
    box-sizing: border-box;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    padding: 15px 30px 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    -webkit-appearance: button;
    background-color: #f8f9fa;
    border: 0;
  }

  .wrc-control{
    display: block;
    margin-bottom: 8px;
    margin-top: 8px;
    padding: 10px 10px 10px;
    border: 0;
    width: 80%;
    background-color: #f8f9fa;
  }

  .wrc-label{
    display: inline-block;
    padding: 10px 10px 10px;
  }
  .wrc-form-group{
    display: block;
    margin-bottom: 8px;
    margin-top: 8px;
    padding: 10px 0px 10px 0px;
  }
  .wrc-form-group input[type=text], input[type=password], input[type=email], input[type=url], textarea{
    width: 100% !important;
  }
  .wrc-message{
    margin-left: 10px;
  }

  .wrc-info {
    background-color: #e7f3fe;
    border-left: 6px solid #2196F3;
      margin-bottom: 15px;
    padding: 10px 12px;
  }

  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
#PCFormModal{
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-left: none;
    height: auto;
}
#PCFormModal .z-overlay-inner{
   margin-top: 0px !important;
}

* { 
  box-sizing: border-box;
}

.m-submit-btn {
  background-color: #dadce0;
  color: black;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 30px;
  margin-bottom: 20px;
  cursor: pointer;
}

.m-submit-btn:hover {
  background-color: black;
  color: white;
  cursor: pointer;
}

.mfm-control {
  font-family: arial;
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  padding-top: 3px;
  cursor: pointer;
  font-size: 16px;
  box-sizing: border-box;
}

  .mfm-control input {
          position: absolute;
          z-index: -1;
          opacity: 0;
      }
  .control_indicator {
      position: absolute;
      top: 2px;
      left: 0;
      height: 20px;
      width: 20px;
      background: #e6e6e6;
      border: 0px solid #000000;
      border-radius: 0px;
  }
  .mfm-control:hover input ~ .control_indicator,
  .mfm-control input:focus ~ .control_indicator {
      background: #cccccc;
  }

  .mfm-control input:checked ~ .control_indicator {
      background: #2aa1c0;
  }
  .mfm-control:hover input:not([disabled]):checked ~ .control_indicator,
  .mfm-control input:checked:focus ~ .control_indicator {
      background: #0e6647d;
  }
  .mfm-control input:disabled ~ .control_indicator {
      background: #e6e6e6;
      opacity: 0.6;
      pointer-events: none;
  }
  .control_indicator:after {
      box-sizing: unset;
      content: '';
      position: absolute;
      display: none;
  }
  .mfm-control input:checked ~ .control_indicator:after {
      display: block;
  }
  .control-checkbox .control_indicator:after {
      left: 8px;
      top: 4px;
      width: 3px;
      height: 8px;
      border: solid #ffffff;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
  }
  .control-checkbox input:disabled ~ .control_indicator:after {
      border-color: #7b7b7b;
  }
  .control-checkbox .control_indicator::before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 4.5rem;
      height: 4.5rem;
      margin-left: -1.3rem;
      margin-top: -1.3rem;
      background: #2aa1c0;
      border-radius: 3rem;
      opacity: 0.6;
      z-index: 99999;
      transform: scale(0);
  }
  @keyframes s-ripple {
      0% {
          transform: scale(0);
      }
      20% {
          transform: scale(1);
      }
      100% {
          opacity: 0;
          transform: scale(1);
      }
  }
  @keyframes s-ripple-dup {
     0% {
         transform: scale(0);
      }
     30% {
          transform: scale(1);
      }
      60% {
          transform: scale(1);
      }
      100% {
          opacity: 0;
          transform: scale(1);
      }
  }
  .control-checkbox input + .control_indicator::before {
      animation: s-ripple 250ms ease-out;
  }
  .control-checkbox input:checked + .control_indicator::before {
      animation-name: s-ripple-dup;
  }

  .mform-container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 30px;
    width: 100%;
    position: relative;
    display: block;
    margin: 40px auto 40px auto;
    box-sizing: border-box;
  }

  .mform-container *{
      box-sizing: border-box;
  }

  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 800px) {
    .mform-container {
      width: 100%;
    }
  }

.pc-btnlink {
  display: block;
  width: 100%;
  border: none;
  background-color:#dadce0;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  color:#343a40;
  margin-top: 8px;
  text-decoration: none;
}

.pc-btnlink:hover {
  background-color: #ddd;
  color: black;
  text-decoration: none;
}

.pc-alert-error {
  padding: 20px;
  background-color: #f44336;
  color: white;
}
.pc-alert-success {
  padding: 20px;
  background-color: #4CAF50;
  color: white;
} 

/*
* ---------------------------------------------
* Table:
*----------------------------------------------
*/
.mbmtable-wrap{
  overflow-x:auto;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  box-sizing: border-box;
}

.mbmtable-wrap table {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  margin-bottom: 15px;
  background-color: transparent; /* Change the background-color of table here */
  text-align: left; /* Change the text-alignment of table here */
}

.mbmtable-wrap th {
  font-weight: bold;
  border: 1px solid #cccccc; /* Change the border-color of heading here */
  padding: 8px;
  white-space: nowrap;
}

.mbmtable-wrap td {
  border: 1px solid #cccccc; /* Change the border-color of cells here */
  padding: 8px;
  white-space: nowrap;
}

/* Stylized */

/* Change the default background-color of rows here */
.mbmtable-wrap tr {
  background-color: transparent; 
}

/* Change the background-color of odd rows here */
.mbmtable-wrap tr:nth-of-type(2n+1) {
  background-color: #eeeeee; 
}

.mbmtable-wrap tr th {
  background-color: #edf2f7; 
}

/* Adding Hover Effect for rows */

.mbmtable-wrap tr {
  -moz-transition: background-color 300ms ease-in-out 0s;
  -ms-transition: background-color 300ms ease-in-out 0s;
  -o-transition: background-color 300ms ease-in-out 0s;
  -webkit-transition: background-color 300ms ease-in-out 0s;
  transition: background-color 300ms ease-in-out 0s;
}

.mbmtable-wrap tr:hover {
  background-color: #fff176; /* Change the hover background-color of rows here */
}

/* Removing left and right border of rows for modern UIs */
.mbmtable-wrap tr {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.mbmtable-wrap th, .mbmtable-wrap td {
  border: none;
}


/*Strip the ul of padding and list styling*/
.pc-horizontal-menu ul {
    list-style-type:none;
    margin:0;
    padding:0;
    position: relative;
}

/*Create a horizontal list with spacing*/
.pc-horizontal-menu li {
    display:inline-block;
    margin-right: -4px;
}

/*Style for menu links*/
.pc-horizontal-menu li a {
    display:block;
    text-align: center;
    line-height: 35px;
    color: #333;
    background: #eee;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    margin-right: 1px;
    border-right: 1px solid #333;

}
.pc-horizontal-menu li:first-child {
    border-left: 5px solid #C60D1F;
}
.pc-control-col {
    display: inline-block; 
    min-width: 350px;
    margin-right: 10px;
}
