.ss_container{
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}
.ss_row{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.text-left{
  text-align: left;
}
.text-right{
  text-align: right;
}
.text-center{
  text-align: center;
}

.ss_close{
  border: 0;
  background-color: transparent;
  padding: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
}
.ss_close span{
  position: absolute;
  width: 2px;
  height: 40px;
  display: block;
  background-color: #fff;
  opacity: 0.6;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ss_close span:nth-child(2){
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.ss_close:hover span {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ss_close:hover span:nth-child(2) {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* Inputs */
.ss_importer-input-field *{
	box-sizing: border-box;
}
.ss_importer-input-field{
  padding: 20px;
  border: 1px solid #ddd;
}
.ss_importer-input-field + .ss_importer-input-field{
  margin: 20px 0 0;
}
.ss_importer-input-field h4{
	font-size: 18px;
	margin: 0 0 10px;
	font-weight: 600;
	line-height: 1.4em;
	color: #333;
}
.ss_importer-input-field p{
	font-size: 12px;
  line-height: 16px;
  color: #8D8D8D;
	max-width: 400px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
	max-width: 400px;
}
.ss_importer-input-field hr{
  margin: 20px 0;
}

/* Input: file */


/* Input: Checkbox */
.ss_importer-input-field .ss_importer-switch {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
  height: 22px;
  width: 42px;
  border-radius: 16px !important;
  display: inline-block;
  position: relative;
  margin: 0;
  border: 0 !important;
  background: #e0e0e0;
  transition: all 0.2s ease;
}
.ss_importer-input-field .ss_importer-switch:after {
  content: "";
  position: absolute;
	top: 4px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 2px rgba(44, 44, 44, 0.2);
  transition: all 0.2s cubic-bezier(0.5, 0.1, 0.75, 1.35);
}
.ss_importer-input-field .ss_importer-switch:checked {
	background-color: #1e73be !important;
}
.ss_importer-input-field .ss_importer-switch:checked:after {
  transform: translatex(20px);
}
.ss_importer-input-field .ss_importer-switch:focus {
  outline: none !important;
	box-shadow: none !important;
}
.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox].ss_importer-input-field{
	border: 2px solid #474755;
}

.ss_importer-input-field .ss_importer-switch::before{
	display: none !important;
}

/* Input: text & textarea */
.ss_importer-input-field .ss_importer-text{
	height: 34px;
	font-size: 13px;
	max-width: 255px;
	margin: 0;
	font-weight: normal;
	background-color: #fff;
	font-size: 13px;
	color: #585858;
	width: 100%;
	margin: 1px;
	background: #fff;
	border-radius: 0;
	border: 1px solid #ddd;
	font-size: 13px;
	border-radius: 2px;
	padding: 6px 10px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.ss_importer-input-field textarea.ss_importer-text{
	resize: none;
	height: 150px;
}

/* Input: select */
.ss_importer-select-wrapper{
	position: relative;
}
.ss_importer-select-wrapper .ss_importer-select{
	padding: 0;
  padding-right: 25px;
  height: 34px;
	font-size: 13px;
  outline: none;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  -webkit-appearance: none;
  background-color: #fff;
  background-position: calc(100% - 10px) center;
  background-position-y: center;
  background-position-x: calc(100% - 10px);
  padding-left: 10px;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
	cursor: default;
}

.ss_importer-input-field .ss_importer-text:hover,
.ss_importer-select-wrapper .ss_importer-select:hover{
	color: initial;
	cursor: default;
	border-color: #bbb;
}
.ss_importer-input-field .ss_importer-text:focus,
.ss_importer-select-wrapper .ss_importer-select:focus{
	outline: none;
	border: 1px solid #1e73be;
	box-shadow: 0 0 5px #DBDBDB;
}

/* Demo Import */
.ss_importer-manual-import-btn{
  margin-top: 40px;
  text-align: center;
}

.ss_importer-wrapper-inner{
  transition: .5s;
  margin-bottom: 30px;
}
.ss_importer-wrapper.loading .ss_importer-wrapper-inner{
  opacity: 0;
  visibility: hidden;
}
.ss_importer-wrapper.complete .ss_importer-wrapper-inner{
  opacity: 1;
  visibility: visible;
}

.ss_importer-wrapper-inner .ss_importer-manual-import-btn button.button-large{
  padding: 10px 40px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.ss_importer-wrapper .postprocess-import-logs{
  display: none;
}
.ss_importer-wrapper.complete .postprocess-import-logs{
  display: block;
}

.ss_importer-wrapper *, .ss_importer-wrapper  ::after, .ss_importer-wrapper  ::before{
  box-sizing: border-box;
}
.ss_importer-wrapper{
  position: relative;
  background-color: #fff;
  box-shadow: 0 3px 24px rgba(0,0,0,.04);
  border: 1px solid #F0F2F3;
  padding: 40px;
  margin: 30px 15px 0 15px;
}
.ss_importer-demos{
  max-height: 800px;
  overflow-y: auto;
  justify-content: center;
}

.ss_importer-demo .ss_importer-demo-thumb{
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: top;
  transition: 10s linear;
  position: relative;
  border-radius: 3px;
}
.ss_importer-demo .ss_importer-demo-thumb:hover{
  background-position: bottom;
}

.ss_importer-demo .ss_importer-demo-thumb span{
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: block;
  padding: 5px 10px;
  background-color: #23282d;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 3px;
}

.ss_importer-demo{
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
  position: relative;
  width: 100%;
  min-height: 1px;
}
.ss_importer-demo-body{
  margin: 0 0 30px;
  position: relative;
  text-align: center;
}

.ss_importer-demo-buttons{
  transition: .3s;
  opacity: .6;
}
.ss_importer-demo:hover .ss_importer-demo-buttons{
  opacity: 1;
}

.ss_importer-tabs{
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.ss_importer-tabs a{
  display: block;
  margin: 0 5px 10px;
  padding: 10px;
  background-color: #f7f7f7;
  color: #23282d;
  text-decoration: none;
  font-weight: 500;
  transition: .3s;
  min-width: 85px;
  text-align: center;
  border-radius: 3px;
}

.ss_importer-tabs a.active{
  background-color: #007cba;
  color: #fff;
}
.ss_importer-tabs a:hover,
.ss_importer-tabs a:focus{
  background-color: #0071a1;
  color: #fff;
}


.ss_importer-notice-wrap{
  position: relative;
  padding: 30px;
  border-left: 3px solid orange;
  margin: 0 0 40px;
  background-color: #f7f7f7;
  list-style: disc;
  padding-left: 50px;
  z-index: 1;
  overflow: hidden;
}
.ss_importer-notice-wrap .ss_importer-notice{
  margin: 0;
}
.ss_importer-notice-wrap .ss_importer-notice + .ss_importer-notice{
  margin-top: 15px;
}

.ss_importer-notice-wrap::before{
  content: "\f534";
  position: absolute;
  font-family: dashicons;
  display: inline-block;
  line-height: 1;
  font-weight: 400;
  z-index: -1;
  font-style: normal;
  top: -10px;
  right: -10px;
  color: orange;
  font-size: 80px;
  opacity: .4;
}

.ss_importer-notice-wrap.success{
  border-left-color: #6eb16e;
}
.ss_importer-notice-wrap.success::before{
  content: "\f12a";
  color: #6eb16e;
}

.ss_importer-notice-wrap.danger{
  border-left-color: #ff7171;
}
.ss_importer-notice-wrap.danger::before{
  color: #ff7171;
}

.ss_importer-title-wrap{
  margin-bottom: 40px;
  text-align: center;
}
.ss_importer-title-wrap hr{
  margin: 17px 0 0;
}
.ss_importer-title-wrap h1{
  font-size: 24px;
  margin-top: 0;
  font-weight: 300;
  line-height: 1.3;
  margin: 0;
}
.ss_importer-title-wrap h1 span{
  font-weight: 700;
  font-size: 50px;
  text-transform: uppercase;
  display: block;
}
.ss_importer-title-wrap .ss_importer-version{
  margin: 0;
  font-weight: 500;
}
.ss_importer-title-inner{
  display: block;
  font-weight: 600;
}

/* Loader */
.ss_importer-state{
  text-align: center;
  margin: 40px 0;
  transition: .6s;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.ss_importer-wrapper.complete .ss_importer-complete,
.ss_importer-wrapper.loading .ss_importer-loading{
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  height: auto;
}
.ss_importer-wrapper.complete .ss_importer-loading{
  display: none;
}

.ss_importer-wrapper .ss_importer-complete{
  display: none;
}
/* .ss_importer-wrapper.complete .ss_importer-complete{
  display: block;
} */
.ss_importer-complete.ss_importer-state .button{
  margin: 20px 0 0;
}
.ss_importer-state span{
  font-size: 14px;
  display: block;
  font-weight: 600;
}
.ss_importer-state-icon{
  width: 150px;
  margin: 0 auto 20px;
}
.ss_importer-state-icon svg{
  fill: #333;
  overflow: visible;
}

.ss_importer-state-icon svg .ss_importer-state-arrow{
  -moz-animation: bounceUpDown 2s infinite;
  -webkit-animation: bounceUpDown 2s infinite;
  animation: bounceUpDown 2s infinite;
}

@keyframes bounceUpDown {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* System Status */
.ss_importer-system-status{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0,0,0,.9);
  z-index: 45;
  padding: 40px;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}
.ss_importer-system-status.open{
  height: 100%;
  opacity: 1;
  visibility: visible;
}

.ss_importer-system-status .ss_close{
  position: absolute;
  right: 40px;
  top: 40px;
}

.ss_importer-system-status .ss_importer-table{
  color: #a5a5a5;
}
.ss_importer-system-status .ss_importer-table th{
  color: #fff;
}

.ss_importer-table{
  text-align: left;
  margin-bottom: 30px;
}

@media(max-width: 991px){

  .ss_importer-demo{
    flex: 0 0 50%;
    max-width: 50%;
  }

}

@media(max-width: 575px){

  .ss_importer-demo{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ss_importer-demos{
    max-height: 100%;
  }
  .ss_importer-wrapper{
    padding: 25px 10px;
  }
  .ss_importer-title-wrap h1 span{
    font-size: 30px;
  }

}
