/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
 @font-face {
  font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
body .kount-admin-content {
  font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
.kount-admin-content .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.kount-admin-content .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.kount-admin-content .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.kount-admin-content .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #0c8df5;
}

input:focus + .slider {
  box-shadow: 0 0 1px #0c8df5;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/** Collapse section**/
.settings-section{
  width:100%;
}
.settings-section hr{
  margin: 0px 20px;
}

.kount-admin-content .collapsible {
  color: white;
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  flex-direction: row;
  display: flex;
}

.left-col{
  width:70%;
}
.right-col{
  width:30%;
  padding: 8px 12px;
  line-height: 1.4;
}
.content {
  padding: 0 25px;
  display: block;
  overflow: hidden;
}

.inside-div{
  width:80%; text-align: left;
}

.right-col img{
  height:15px; width:15px;
}

.kount-admin-content .submit-button{
  padding-left: 20px;
}
.toggle-description{
  font-size:12px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 70%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close_kount_modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close_kount_modal:hover,
.close_kount_modal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
/**** download section*/
.download_section{
  width: 100%;
  display: inline-block;
}
.download_left{
  width:35%;
  float:left;
}
.download_right{
  width:65%;
  float:right;
  margin-top: 10px;
  display:flex;
}