/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.dsm_switch_check {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.dsm_switch_check input[type=checkbox] { 
  	opacity: 0;
  	width: 0;
  	height: 0;
}
.dsm_switch_check .dsm_slider{
	border-radius: 34px;
}
.dsm_switch_check input[type=checkbox]:checked + .dsm_slider {
  background-color: #2196F3;
}

.dsm_switch_check input[type=checkbox]:focus + .dsm_slider {
  box-shadow: 0 0 1px #2196F3;
}

.dsm_switch_check input[type=checkbox]:checked + .dsm_slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}
.dsm_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
	border-radius: 34px;
}
.dsm_slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.dsm_setting_tbl tr {
    display: inline-grid;
    margin: 10px;
    background: #fff;
    width: calc(25% - 20px);
}

.dsm_setting_tbl tbody {
    display: flex;
    flex-wrap: wrap;
}

.form-table.dsm_setting_tbl th {
    vertical-align: top;
    text-align: left;
    padding: 20px;
    width: auto;
    line-height: 1.3;
    font-weight: 600;
}

.form-table.dsm_setting_tbl td{
  padding: 15px 20px;
}
.dsm_setting_tbl td p {
    margin-top: 10px;
}
.dsm_setting_page p.submit {
    margin-left: 15px;
}
.dsm_setting_page p.submit {
    margin-left: 15px;
}

@media(max-width: 1000px){
  .dsm_setting_tbl tr {
      width: calc(50% - 20px);
  }
}