.create-theme-confirm {
  display: none;
}
.form-table .success-message th,
span.success-message {
  color: green;
}
.form-table .error-message th,
span.error-message {
  color: red;
}

.section {
  background-color: #f1f1f1;
  font-size: 12px;
}

.inner {
  border: 1px solid #E5E5E5;
  background: #fff;
}
.inner h4 {
  margin: 0;
  padding: 12px;
  border-bottom: 1px solid #E5E5E5;
  text-transform: capitalize;
}
.tabs-wrap {
  display: flex;
  min-height: 10px;
}
ul {
  list-style: none;
}
ul.tabs {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  margin: 0;
  padding: 15px 0 15px;
  border-right: 1px solid #E5E5E5;
}

ul.tabs_child {
  display: flex;
  height: 30px;
  margin: 0;
  padding: 0;
}

ul.tabs li {
  height: 30px;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #E5E5E5;
  line-height: 30px;
}

ul.tabs_child li {
  width: auto;
  /* height: 30px;
  line-height: 30px; */
  height: 15px;
  border-right: 1px solid #000;
  line-height: 15px;
}
ul.tabs_child li:last-child {
  border-right: 0;
}

ul.tabs li a,
ul.tabs_child li a {
  display: block;
  padding: 0 12px;
  text-decoration: none;
  font-size: 14px;
  outline: none;

}
ul.tabs li a {
  color: #000;
}
ul.tabs li a:hover {
  color: #1A92CC;
}

ul.tabs_child li a {
  color: #1A92CC;

}
ul.tabs_child li a:hover {
  color: #000;

}



ul.tabs li.active a {
  color: #fff;
}

ul.tabs_child li.active a {
  color: #000;
  text-decoration: underline;
}
ul.tabs_child li.active a {
  color: #000;
}

ul.tabs li.active {
  background: #000;
}


.tab_content {
  padding: 22px 0 0;
}
.tab_content_child {
  align-items: center;
  padding: 0 12px;
}

.get-grow-pro-wrapper {
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  z-index: 1001;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  max-width: 180px;
  width: 100%;
  padding: 20px 15px;
  border-radius: 7px;
  box-shadow: 0 0 10px -5px #000;
  background-color: #fff;
}

.get-grow-pro-message {
  color: #7e82de;
  text-align: center;
}

.get-grow-pro-btn {
  padding: 10px 15px;
  border: 1px solid #f56640;
  border-radius: 7px;
  color: #fff;
  background-color: #f56640;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: .3s all;
}

.get-grow-pro-btn:active,
.get-grow-pro-btn:hover {
  color: #f56640;
  background-color: #fff;
}

.get-grow-pro-btn:focus {
  box-shadow: 0px 0px 10px 1px #827f7f;
  color: #fff;
  background-color: #f56640;
  outline: none;
}

.growanizer-help-tip {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 0 0 9px;
  cursor: help;
  color: #666;
  font-size: 1.3em;
  line-height: 20px;
  font-style: normal;
  vertical-align: middle;
}

.growanizer-help-tip:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: 0px;
  cursor: help;
  text-align: center;
  text-transform: none;
  font-family: Dashicons;
  font-weight: 400;
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased;
  text-indent: 0px;
  font-variant: normal;
}

.growanizer-form-field label,
.growanizer-form-field input,
.growanizer-form-field select,
.growanizer-form-field span.growanizer-help-value {
  float: left;
}

.growanizer-form-field input[type="text"] {
  width: 81px;
  min-height: 23px;
  line-height: normal;
}

.growanizer-form-field {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.growanizer-form-field label {
  width: 125px;
}

#tiptip_holder {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 123;
}

#tiptip_holder.tip_bottom #tiptip_arrow_inner {
  margin-top: -5px;
  margin-left: -6px;
  border-bottom-color: #333;
}

#tiptip_arrow, #tiptip_arrow_inner {
  position: absolute;
  width: 0;
  height: 0;
  border-width: 6px;
  border-color: transparent;
  border-style: solid;
}

#tiptip_content {
  max-width: 300px;
  padding: .618em 1em;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  color: #fff;
  background: #333;
  text-align: left;
  font-size: .8em;
}

/* The Theme Template Modal */
.grow-theme-modal {
  position: fixed; /* Stay in place */
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  opacity: 0;
  visibility: hidden;
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  animation-duration: 0.4s;
  animation-name: fadeIn;
  transition: .4s fadeIn;
}

.grow-theme-modal_visible {
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

/* Modal Content */
.grow-theme-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  background-color: #fefefe;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .grow-theme-modal-content {
    width: 95%;
  }
}

/* The Close Button */
.grow-theme-close {
  float: right;
  margin-top: 15px;
  color: white;
  font-size: 28px;
  font-weight: bold;
}

.grow-theme-close:hover,
.grow-theme-close:focus {
  cursor: pointer;
  color: #000;
  text-decoration: none;
}

.grow-theme-modal-header {
  padding: 2px 16px;
  background-color: #7e82de;
}

.grow-theme-modal-header h2 {
  color: white;
}

.grow-theme-modal-body {
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
  max-height: 600px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.grow-theme-modal-body .template-item {
  position: relative;
  flex: auto;
  flex-basis: 33.3333%;
  max-width: 33.3333%;
  margin-bottom: 50px;
  padding: 10px 10px 0;
  box-sizing: border-box;
  transition: .2s all;
}

@media screen and (max-width: 1205px) {
  .grow-theme-modal-body .template-item {
    flex-basis: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media screen and (max-width: 991px) {
  .grow-theme-modal-body .template-item {
    max-width: 100%;
    margin: 10px 10px 40px;
  }
}

.grow-theme-modal-body.mCustomScrollbar.mCS_no_scrollbar .template-item:nth-of-type(3n) {
  padding-right: 10px;
}

@media screen and (max-width: 1205px) {
  .grow-theme-modal-body.mCustomScrollbar .template-item:nth-of-type(3n) {
    padding-right: 10px;
  }
}

@media screen and (max-width: 991px) {
  .grow-theme-modal-body.mCustomScrollbar .template-item:nth-of-type(even) {
    padding-right: 10px;
  }
}

.grow-theme-modal-body .template-item .theme-for {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.grow-theme-modal-body .template-item .theme-for span {
  text-transform: uppercase;
  font-size: 14px;
	font-weight: bold;
}

.grow-theme-modal-body .theme-image-preview {
	display: flex;
	align-items: flex-start;
  margin-bottom: 10px;
}

.grow-theme-modal-body .template-item .btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 374px) {
  .grow-theme-modal-body .template-item .btn-row {
    flex-direction: column;
  }
}

.grow-theme-modal-body .template-item .btn-row a,
.grow-theme-modal-body .template-item .btn-row button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 105px;
  width: 100%;
  height: 40px;
  margin: 0 10px;
  padding: 5px 15px;
  border: 1px solid transparent;
  border-radius: 7px;
  box-sizing: border-box;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  transition: .5s all;
}

@media screen and (max-width: 374px) {
  .grow-theme-modal-body .template-item .btn-row a,
  .grow-theme-modal-body .template-item .btn-row button {
    max-width: 100%;
    text-align: center;
  }
}

.grow-theme-modal-body .template-item .btn-row a:hover,
.grow-theme-modal-body .template-item .btn-row button:hover {
  color: #f56640;
  background-color: #fff;
}

.grow-theme-modal-body .template-item .btn-row button {
  border-color: #7e82de;
  background-color: #7e82de;
}

.grow-theme-modal-body .template-item .btn-row button:hover {
  border-color: #f56640;
}

.grow-theme-modal-body .template-item .btn-row a {
  border-color: #f56640;
  background-color: #f56640;
  text-decoration: none;
}

@media screen and (max-width: 374px) {
  .grow-theme-modal-body .template-item .btn-row a {
    margin-bottom: 10px;
  }
}

.grow-theme-modal-body .template-item .btn-row .hidden {
  display: none;
}

.grow-theme-modal-body img {
  max-width: 100%;
}

.grow-theme-modal-footer {
  padding: 2px 16px;
  color: white;
  background-color: #7e82de;
}

.grow-theme-modal-footer a {
  color: #fff;
}

.grow-theme-modal-preloader{
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  margin: 10px auto;
  padding: 5px;
  border-radius: 50%;
  background-color: #7e82de;
  text-align: center;
}

.grow-theme-modal-preloader img {
  max-width: 100%;
}

.grow-theme-modal-message {
  display: none;
  z-index: 1;
  max-width: 632px;
  width: 100%;
  margin: 10px auto 0;
	padding: 10px 15px;
	border: 1px solid #48bb77;
	border-radius: 7px;
  box-sizing: border-box;
	color: #fff;
	background-color: #48bb77;
}

.grow-theme-modal-message p {
  position: relative;
  margin: 0;
  padding-left: 30px;
  text-transform: uppercase;
  font-weight: 600;
}

.grow-theme-modal-message p .grow-theme-modal-message-icon {
  position: absolute;
	display: flex;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  align-items: center;
  justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #fff;
}

.grow-theme-modal-message p .grow-theme-modal-message-icon::before {
  content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2348bb77' d='M173.897 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.997 26.207-9.997 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.997 9.997-26.207 9.997-36.204-.001z'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
}

.grow-theme-modal-message p a {
  color: #fff;
}

.grow-theme-modal-error {
  font-size: 20px;
}

.template-item input {
  float: right;
}

.switcher-row {
	display: flex;
  order: -1;
  flex-basis: 100%;
  justify-content: center;
  margin: 20px 0;
	padding: 0;
	overflow: hidden;
}

.switcher-row input {
	position: absolute !important;
	width: 1px;
	height: 1px;
	border: 0;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

.switcher-row label {
  display: flex;
  align-items: center;
  height: 40px;
	padding: 5px 15px;
  border: 1px solid #7e82de;
  box-shadow: 0px 6px 21px 0px rgba(0, 0, 0, 0.13);
  box-sizing: border-box;
  cursor: pointer;
	color: #7e82de;
	background-color: #fff;
	text-align: center;
	font-size: 14px;
  transition: .5s all;
}

.switcher-row label:first-of-type {
  border-radius: 7px 0 0 7px;
}

.switcher-row label:last-of-type {
  border-radius: 0 7px 7px 0;
}

.switcher-row label:hover {
  color: #fff;
	background-color: #7e82de;
}

.switcher-row input:checked + label {
	box-shadow: none;
  color: #fff;
	background-color: #7e82de;
}

/* Custom Scroll */
.mCS-grow-scroll-theme.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #7e82de;
}

.mCS-grow-scroll-theme.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #ccc;
}

.mCustomScrollBox {
  width: 100%;
}

.mCSB_inside>.mCSB_container {
  margin-right: 0;
}

@media screen and (max-width: 991px) {
  .mCSB_inside>.mCSB_container {
    margin-right: 16px;
  }
}

.mCSB_container {
  display: flex;
  flex-wrap: wrap;

  padding: 0 15px;
}

@media screen and (max-width: 1205px) {
  .mCSB_container {
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  .mCSB_container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
/* Custom Scroll */