
/*------------- [ GLOBAL STYLING ] -------------*/
:root {
  --primary-color: #11bbe6;
  --dark-blue-color: #108dad;
  --black-color: #323030;
  --input-bg-color: #f3f5f7;
  --input-border-color: #eaedef;
  --font-family-sans-serif: "Open Sans", sans-serif;
}

#wpfooter{
  bottom: unset;
}

#wpbody-content{
  font-family: var(--font-family-sans-serif);
  letter-spacing: 1px;
}

.theme-btn{
  border:none;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.20);
  transition: all ease 0.3s;
  transform: translate3d(0,0,0);
  color: #FFF;
  font-size: 14px;
  padding: 12px 25px;
}

.btn{
  transition: all ease 0.3s
}

.btn:hover{
  transform: translate3d(0,-5px,0);
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.30);
}

.btn:focus{
  box-shadow: none !important;
  color: #FFF !important;
}

.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active{
  background: #02c7a6!important;
  border: none;
}

.btn-danger, .btn-danger:hover, .btn-danger:focus{
  background: #c02020eb !important;
}

.btn-blue{
  background: #2A81BA;
}

a:hover{
  text-decoration: none;
}

.common{
  float: left;
  width: 100%;
}

.form-control, .dataTables_filter label input,
input[type=text], input[type=search], input[type=tel], input[type=time], input[type=url], input[type=week], input[type=password], input[type=color], input[type=date], input[type=datetime], input[type=datetime-local], input[type=email], input[type=month], input[type=number], select, textarea{
  height: 55px;
  width: 100%;
  background-color:transparent;
  border-color: var(--input-border-color);
  border-radius: 0;
  padding-left:15px;
  font-size: 16px;
  box-shadow:none;
  font-family: 'Open Sans', sans-serif;
  border: 1px solid #C5C5C5;
  border-radius: 0.25em;
}

select.form-control {
  height: 55px !important;
  font-size: 16px;
      -webkit-appearance: none;
}

.form-control:focus{
  box-shadow:none;
}

input[type=text]:focus, input[type=search]:focus, input[type=radio]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, input[type=password]:focus, input[type=checkbox]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, select:focus, textarea:focus, select:focus{
  box-shadow:none;
}


textarea.form-control{
  padding-top: 20px;
  height: 130px;
}

input[type="file"].form-control{

}

.form-table th, .form-wrap label {
  color: #626262;
}

.form-wrap label {
  color: #626262;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: 0px;
  font-weight: 500
}

select.form-control, .dataTables_length select{
  padding-left: 15px;
  border-radius: 0.25em;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='15' height='15' viewBox='0 0 24 24'%3e%3cpath fill='%23000000' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'%3e%3c/path%3e%3c/svg%3e");
  background-position: 97% 50%;
  background-repeat: no-repeat;
  font-family: 'Open Sans', sans-serif;
  -webkit-appearance: none;
}

.grey-bg{
  background: #f3f5f7;
  border: var(--input-border-color) solid thin;
}


/*------------- [ HEADER ] -------------*/

.master_header{
  background: var(--primary-color);
  margin-top: 0px;
  padding: 0 20px;
  border-top: var(--dark-blue-color) solid thin;
  border-bottom: var(--dark-blue-color) solid thin;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 45px;
}

.master_header ul{
  padding: 0;
  margin: 0
}

.master_header ul li{
  float: left;
  list-style: none;
  margin-bottom: 0;
}
 
.master_header ul li a {
    display: block;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    padding: 19px 26px;
    position: relative;
    font-weight: 300;
    text-decoration: none;
}
.master_header ul li a:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #23282d;
  transform: scale3d(0, 1, 1);
  transition: transform 0.1s;
}


.master_header ul li a:hover:before, .master_header ul>li.menu__item--current>a:before{

  transform: scale3d(1, 1, 1);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.spc_header ul li:hover ul{display:block;}

.spc_header ul ul {position: absolute;background: var(--primary-color);width: 210px;z-index: 3;display: none;}

.spc_header ul li ul li {width: 100%;display: inline-block;}


/*------------- [ COUNT HEADING ] -------------*/

.master_wrap span.count {
  display: inline-flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border: #000 solid thin;
  border-radius: 100%;
  font-size: 16px;
  margin-right: 15px;
}

 h3 {
  margin: 0;
  letter-spacing: 0;
  font-weight: 600;
  color: #5d5d5d;
  font-size: 20px;
  margin-bottom: 35px;
}


/*------------- [ LOADING ] -------------*/

#spc_loadingoverlay, #spc_loader_icon {
  position: fixed;
  top: 0%;
  left: 0;
  background: rgba(0, 0, 0, .3);
  width: 100%;
  height: 100%;
  z-index: 999999;
  text-align: center;
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

#spc_loader_icon img {
  width: 71px;
  height: 71px;
}

/*------------- [ sweet alert  ] -------------*/

.spc_sweet_alert_message_div_focus h2.swal2-title {
  font-size: 20px;
  text-transform: capitalize;
}

.spc_sweet_alert_message_div_focus .swal2-actions {
  margin: 5px auto 0;
}

.spc_sweet_alert_message_div_focus .swal2-actions button.swal2-styled.swal2-confirm{
  padding: 5px 20px;
  background: var(--primary-color);
}

.spc_sweet_alert_message_div_focus .swal2-actions button:focus{
  outline: none;
  box-shadow:none;
}

.spc_sweet_alert_message_div{
	font-size: 20px;
	font-weight: bolder;
}

.spc_sweet_alert_message_class .swal2-close:focus, .spc_sweet_alert_message_class .swal2-actions button:focus{
  outline: none;
  box-shadow:none;
}

/*------------- [ TOOLTIP ] -------------*/

.tool-tip {
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.tool-tip .toll-tip-desc::before {
  border-top: 10px solid rgba(0, 0, 0, 0);
  border-bottom: 10px solid rgba(206, 115, 115, 0);
  border-right: 10px solid #58666e;
  content: '';
  left: -10px;
  position: absolute;
  top: 10px;
}

.tool-tip .toll-tip-desc {
  display: inline;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  padding: 10px 15px;
  position: absolute;
  top: -11px;
  left: 50px;
  opacity: 0;
  visibility: hidden;
  transition: all cubic-bezier(0.76, 0, 0.4, 1.23) 0.5s;
  width: 500px;
  z-index: 5;
  background: white;
      font-weight: normal;
}

.tool-tip:hover .toll-tip-desc {
  opacity: 1;
  visibility: visible;
  left: 35px;
}

.tool-tip .fa {
  color: var(--primary-color);
  font-size: 18px;
  background: #ffffff;
}

.tool-tip.left .toll-tip-desc {
  right: 20px;
  left: auto;
}

/*------------- [ TOGGLE ] -------------*/

.toggle.btn{
  box-shadow: none;
}

.toggle-group label.btn{
  padding: 0;
  line-height: 35px;
}

.toggle-group label.btn.toggle-on{
  color: #FFF;
  box-shadow: none;
}

.toggle-group label.btn.toggle-off{
  background: #d6d6d6;
}

/*------------- [ NO DATA ] -------------*/

.no-data {
  min-height: 150px;
  text-align: center;
  color: #808080;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spcwp_body{
  padding: 0 20px;
  clear: both;
}

/*------------- [ INFORMATION DATA ] -------------*/

.info_data, .grey_bg{
  border: 1px dashed var(--input-border-color);
  padding: 20px;
  background: var(--input-bg-color);
}

/*------------- [ OR ] -------------*/

.or{
  text-align: center;
  position: relative;
}

.or span{
  display: inline-block;
  background: #797979;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  margin:0 auto 0;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 400;
}
.or:after,
.or:before{
  background: #dddddd;
  content: "";
  height: 1px;
  width: calc(50% - 30px);
  position: absolute;
  top: 48%;
}
.or:after{
  right: 0
}
.or:before {
  left: 0
}


a.click_prdct_detail {
  margin-top: 5px;
  color: var(--primary-color);
  font-size: 12px;
  float: right;
}

/*------------- [ TABS ] -------------*/

.master_wrap{
  padding: 0 20px;
}

.tabs-wrapper{
  border:#e0e0e0 solid thin;
  max-width: 100%;
}

.buy_button_wrapper{
  max-width: 1500px !important;
}

.nav-tabs{
  border-bottom: 1px solid #e0e0e0;
}

.nav-tabs .nav-item{
  color: var(--black-color);
  font-size: 16px;
  line-height: 47px;
  border:none;
  border-radius: 0;
  font-weight: 500;
  position: relative;
  margin-bottom: 0;
  transition: all ease 0.3s;
      padding: .5rem 2px;
}

.nav-tabs .nav-item:after{
  background: #f3f5f7;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  transition: height 0.3s ease 0s;
  width: 100%;
  z-index: -1;
}

.nav-tabs .nav-item.active:after, .nav-tabs .nav-item:hover:after{
  height:100%
}

.nav-tabs .nav-item .bottom_arrow{
  position: absolute;
  bottom: -7px;
  left: 50%;
  transition: all ease 0.3s;
  transform: translate3d(-50%,5px,0);
}

.nav-tabs .nav-item .bottom_arrow:before, .nav-link .bottom_arrow:after {
  display: block;
  border-color: transparent;
  border-style: solid;
  border-top-color: #e0e0e0;
  border-width: 7px 12px 0;
  transform: translate3d(0,7px,0);
}

.nav-tabs .nav-item .bottom_arrow:after{
  border-top-color: #f3f5f7;
  transform: translate3d(0,-1px,0);
}

.nav-tabs .nav-item:hover .bottom_arrow, .nav-tabs .nav-item.active .bottom_arrow{
  transform: translate3d(-50%,0,0);
}

.nav-tabs .nav-item:hover .bottom_arrow:before, .nav-tabs .nav-item:hover .bottom_arrow:after,
.nav-tabs .nav-item.active .bottom_arrow:before, .nav-tabs .nav-item.active .bottom_arrow:after{
  content: "";
}

.nav-tabs .nav-item:hover, .nav-tabs .nav-item.active{
  background: transparent;
}

/*------------- [ TABS CONTENT ] -------------*/

.tab-content{
  padding:50px 40px;
}

.form-group{
  margin-bottom: 30px;
}

.form-group label{
  padding-top: 0px;
  font-size: 16px;
}


/*--[ BROWSER BUTTON ]--*/

.stylish_browse_btn_outer {
  position: relative;
  width: 220px;
  height: 58px;
  border: #2c2b2c dashed 1px;
  background: #f3f5f7;
  border-radius: 3px;
  overflow: hidden;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
}

.stylish_browse_btn_outer:hover {
  background: #e0e0e0;
}

.stylish_browse_btn_outer .browse_btn i {
  transition: all ease 0.3s;
}

.stylish_browse_btn_outer:hover i.fa {
  transform: scale(1.4);
}

.stylish_browse_btn_outer input {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.stylish_browse_btn_outer em{
  font-style: normal;
  margin-left: 10px;
}

/*--[ ACTION DIV ]--*/

.form_action_buttons {
  clear: both;
/*  display: flex;
  justify-content: space-between;*/
}

.form_action_buttons .btn{
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 13px 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.20);
}

.form_action_buttons .btn img {
  margin-left: 7px;
  margin-top: -3px;
  transform: translate3d(0,0,0);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.form_action_buttons .btn:hover img {
  transform: translate3d(10px,0,0);
}

.form_action_buttons .btn.prev-btn{
  box-shadow:-2px 2px 10px rgba(0, 0, 0, 0.20);
  margin-right:10px;
}

.form_action_buttons .btn.prev-btn img{
  margin-right: 10px;
  margin-left: 0
}

.form_action_buttons .btn.prev-btn:hover img {
  transform: translate3d(-10px,0,0);
}

/*------------- [ SPC AUTOMATION ENGINE ] -------------*/

.master_heding{
  margin-bottom: 35px;
}

.master_heding h4{
  margin: 0;
}

.master_heding h4 i{
  font-size: 28px;
  color: var(--dark-blue-color);
}

.dataTables_length, .dataTables_info{
  float: left;
}

.dataTables_length label{
  font-size: 14px;
  color: var(--black-color);
  font-weight: 400;
  text-transform: capitalize;
}

.dataTables_length select{
  height: 50px;
  background-color: var(--input-bg-color);
  border-color: var(--input-border-color);
  font-size: 14px;
  padding: 0 26px 0 10px;
  text-align: center;
  margin: 0 5px;
  background-position: 90% 50%;
}

.dataTables_filter, .dataTables_paginate {
  float: right;
}

.dataTables_filter label input, .dataTables_length select{
   border: #c4c4c4 solid thin !important;
  width:305px;
}

.dataTables_filter label input{
  margin-left: 10px;
}

.table th, .table td, .table thead th{
  border: none;
  border-right: 1px solid #ccc;
}

table.spc_datatable{
  margin: 20px 0;
  float: left;
  border:#e8e8e8 solid thin;
}

table.spc_datatable thead th{
  font-weight: 600;
  text-transform: capitalize;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 10px 27px;
  color: #555;
}

table.spc_datatable thead th.row-id{
  width:100px;
}

table.spc_datatable tbody tr td{
  /*border-bottom: #FFF solid 10px;*/
}

table.spc_datatable tbody tr+tr {

}

table.spc_datatable tbody tr a.copy-btn {
	padding: 5px 6px;
	margin: 0px 10px;
	border-radius: 3px;
	cursor: pointer;
	transition: all ease 0.3s;
	background: #5b9dd9!important;
	color: #FFF;
	display: inline-block;
}

table.spc_datatable tbody tr a.copy-btn:hover{
	background: #5b9dd9!important;
	color: #FFF;
}

table.spc_datatable tbody tr a.copy-btn i{
  margin-right: 5px;
}

table.spc_datatable tbody tr.odd td{
  background: #f8f8f8;
}

table.spc_datatable tbody tr.even td{
  background: #fff;
}

table.spc_datatable tbody td{
  color: #7e7e7e;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  padding: 10px 10px;
  letter-spacing: 0;
}

table.spc_datatable tbody td a{
  color: var(--dark-blue-color);
}

table.spc_datatable tbody td:last-child a{
  color: #FFF;
}

table.spc_datatable tbody td:last-child a:hover{
  transform: translate3d(0,-2px,0);
}

table.dataTable thead th, table.dataTable thead td{
  border-bottom:none;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  position: relative;
}
table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  position: absolute;
  bottom: 50%;
  display: block;
  opacity: 1;
  transform: translate3d(0,47%,0);
  font-size: 14px;
  transition: all ease 0.3s;
  opacity: 1;
  right: 15px;
  font-family: 'FontAwesome';
  content: "\f107";
}

table.dataTable thead .sorting_asc:after{
  transform: translate3d(0,47%,0) rotate(180deg);
}

table.dataTable thead .sorting_desc:after{

}


.dataTables_info, .dataTables_paginate{
  margin-bottom: 50px;
  font-size: 14px;
}

.dataTables_paginate{
  margin-right: 15px;
}

.dataTables_paginate span{
  padding: 0 15px;
  display: inline-block;
}

.dataTables_paginate a{
  padding: 0 3px;
  cursor: pointer;
  color: var(--black-color);
  position: relative;
}

.dataTables_paginate a.paginate_button:before{
  position: absolute;
  content: '';
  font-family: 'FontAwesome';
}

.dataTables_paginate a.paginate_button.previous:before{
  content: "\f100";
  left: -10px;
}

.dataTables_paginate a.paginate_button.next:before{
  content: "\f101";
  right: -10px;
}

.dataTables_paginate a.current, .dataTables_paginate a:hover{
  color: var(--dark-blue-color);
}



/*------------- [ ORDER BUMP ] -------------*/

.preview_wrap{
  padding: 20px;
  height: auto;
}

.seprator{
  float: left;
  width: 100%;
  border-top: #7e7e7e dashed 1px;
  margin: 20px 0
}

.preview-template{
  margin-bottom: 30px;
}

.preview_wrap h5{
  font-size: 14px;
  color: #666666;
  margin-bottom: 15px;
}

.preview_wrap label{
  padding-top: 0;
  margin: 0
}

.customizer_wrap input{
  background: #FFF;
}



.product_options .or{

}




/*------------- [ SELECT CHECKOUT TYPE ] -------------*/

.template-card {
  padding: 5px;
  border: #e8e8e8 solid thin;
  position: relative;
  background: #f7f7f7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.10);
  border-radius: 3px;
  overflow: hidden;
}

.template-card .true-icon{
  height: 50px;
  width: 50px;
  line-height: 55px;
  color: #fff;
  background: #01B500;
  border-radius: 100%;
  text-align: center;
  font-size: 20px;
  position: absolute;
  z-index: 1;
  top: -10px;
  right: -10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.template-card .action_bar{
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
  transform: translate3d(0,15px,0);
}

.template-card .action_bar .btn{
  margin: 0 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
  transform: translate3d(0,15px,0);
}

.template-card:hover .action_bar, .template-card:hover .action_bar .btn{
  visibility: visible;
  opacity: 1;
  transform: translate3d(0,0,0)
}


/*------------- [ SELECT A TEMPLATE ] -------------*/

.bootstrap-select.show>.dropdown-menu>.dropdown-menu {
   display: block;
}

.bootstrap-select > .dropdown-menu > .dropdown-menu li.hidden{
   display:none;
}

.bootstrap-select > .dropdown-menu > .dropdown-menu li a{
   display: block;
   width: 100%;
   padding: 3px 1.5rem;
   clear: both;
   font-weight: 400;
   color: #292b2c;
   text-align: inherit;
   white-space: nowrap;
   background: 0 0;
   border: 0;
}

/*------------- [ MODAL BOX ] -------------*/

.modal-header {
  flex-flow: row-reverse;
}

.table thead tr, .table thead tr th{
  background-color: #f1f1f1;
  text-align:center
}

table.spc_datatable tbody tr.odd td {
    background: #fff;
}

table.spc_datatable tbody tr.even td {
    background: #f1f1f1;
}
  td.table-checkbox-outer {
    width: 20px !important;
}
.dataTables_length select , .dataTables_filter input, .dataTables_filter label input{
    height: 50px!important;
 }



/*------------- [ CUSTOMIZER CONTROLS ] -------------*/

.side-bar-heading {
    color: #2196f3;
    background: #e8e8e8;
    text-align: center;
    padding: 8px 0;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 17px;
    float: left;
    letter-spacing: 0;
    width: 100%;
}

.customized-optional .side-bar-heading small{
  color: #FFF;
}

ul.templates-styles {
    width: 100%;
    float: left;
    background: #fbfbfb;
    padding: 0px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell;
    font-size: 12px;
    letter-spacing: 0;
}

ul.templates-styles li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 10px;
  padding: 0;
  border-bottom: #aac1d3 dashed thin;
  min-height: 50px;
}

ul.templates-styles li input[type="text"], ul.templates-styles li select, ul.templates-styles li .submitting_textarea {
  background-color: white;
  box-shadow: none;
  font-size: 14px;
  padding: 0 5px !important;
  height: 28px !important;
  width: 100%;
  border: 1px solid #e1e1e1;
}

ul.templates-styles li .input-group.colorpicker-component input[type="text"]{
  width: 1%
}

ul.templates-styles li .input-group.colorpicker-component i{
  height: 26px;
}

.slider.slider-horizontal{
  height: 28px;
}

.slider.slider-horizontal .slider-handle {
 position: absolute;
 top: 8px;
 margin-left: 0;
 width: 15px;
 height: 15px;
 background: var(--primary-color);
 background-image: none;
}

.slider.slider-horizontal .slider-track {
  height: 6px;
  width: 100%;
  margin-top: -1px;
  top: 50%;
  left: 0;
  background: #c1c1c1;
}

.slider.slider-horizontal .slider-selection {
  background: #191919;
}

ul.templates-styles li .input-group input.button {
  border: none;
  color: white;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 0 10px;
  float: right;
}
/********Loader******/
@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.lds-dual-ring {
  position: relative;
}
.lds-dual-ring div {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 20px;
  left: 20px;
  border-radius: 60%;
  border: 10px solid #000;
  border-color: #fff transparent #fff transparent;
  -webkit-animation: lds-dual-ring 1.4s linear infinite;
  animation: lds-dual-ring 1.4s linear infinite;
}
.lds-dual-ring {
  width: 200px !important;
  height: 200px !important;
  -webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
  transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}
.lds-dual-ring {
  width: 200px !important;
  height: 200px !important;
  -webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
  transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}


/********Loader******/

.infoDiv {
  background: #fff;
  border: #c5c5c5 solid thin;
  margin: 5px 15px 2px;
  padding: 10px 15px;
  border-left: #42b2d5 solid 4px;
  border-radius: 5px;
}


.payment_method input[type=checkbox] {
  height: 30px !important;
  width: 30px !important;
  border-radius: 2px !important;
  overflow: hidden !important;
}

.payment_method input[type=checkbox]:checked:before {
  width: 100% !important;
  font: 400 25px/1.2 dashicons !important;
}

.payment_method input[type=checkbox]:checked:before {
  content: "\f147";
  margin: 0 !important;
  color: #ffffff !important;
  background: #0a6bb6 !important;
    height:auto;
}

 .master_wrap input[type="radio"]  {
  transform: scale(1.4) !important;
  -webkit-transform: scale(1.4) !important;
}
 .master_wrap input[type="radio"]:checked,  master_wrap  input[type="radio"]:checked, master_wrap   input[type="radio"]:checked{
  background: #10bae6;
}

.master_wrap input[type=radio]:checked:before{
  background-color: #fff !important;
  color: #FFF !important;
}


.form-group.payment_method label {
  display: flex;
  align-items: center;
}

.form-group.payment_method label .btn:hover{
  transform: translate3d(0,0,0);
}
td.table-checkbox-outer:first-child , table.dataTable thead td{
    text-align: center;
}


.btns-groups .btn:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.20);
    transform: translate3d(0,0,0);
}


.error.fade.notice{
display:none !important;
}
h5.product_price br {
    display: none;
}



.purchase_credit_tab_has.nav-tabs .nav-item {
	font-size:15px;
}

.spc-include-jquery-notice > .col-sm-9 {
    padding: 0;
}

.spc-include-jquery-notice .spc-in-inner {
    background: #f7d874;
    padding: 10px;
    text-align: left;
    color: #856404;
    background-color: #ffdb6a;
    border-color: #ffeeba;
    border-left: 5px solid;
    display: flex;
    align-items: center;
    gap: 20px;
}

.spc-include-jquery-notice a.set-option-include-jquery, .preview-btn-sameline .btn-preview {
    width: 150px;
    border-radius: 5px;
    background: #3b5998 !important;
    color: #fff;
    height: 40px;
    padding: 0 15px;
    text-transform: none;
    font-family: 'DM Sans',sans-serif;
    min-width: 90px;
    box-shadow: none;
    text-decoration: none;
    margin: 0;
    line-height: 40px;
    border: none;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.spc-include-jquery-notice h4.prod_name_payment {
    margin: 5px 0px;
    padding: 0;
    font-size: 18px;
    line-height: normal;
    border-right: 2px solid #fff3cd;
    padding-right: 20px;
}

.preview-btn-sameline .btn-preview {position: absolute;right: 0;top: 0;bottom: 0;height: 50px;border-radius: 0 5px 5px 0;display: flex;flex-direction: column;justify-content: center;}

.preview-btn-sameline {
    position: relative;
    padding: 0;
}

.preview-btn-sameline .main_offer #buynowresult textarea {
    width: 100%;
    margin-bottom: 0!important;
    height: 50px;
}

a.col-sm-1.btn-preview:hover {
    color: #fff;
}


/*july 01*/
.preview-btn-sameline textarea {
    width: 100%;
    margin-bottom: 0!important;
    height: 50px !important;
}

body #paycart-template-9 .action-btns {
    width: 98%;
}
 
body #paycart-template-12 form#formPayment .form-panel .form-inner-body .checkout-inner-fields label input[type=radio] {
    max-width: none;
    flex: inherit;
    margin-right: 10px;
}

body  .back_dummy_amount {
    margin-right: -53px !important;
}
 
#checkoutWrapper #paycart-template-12 #shade {
    position: static;
    width: 100%;
    padding: 10px;
    line-height: 1;
    font-size: 14px;
    letter-spacing: 0;
}

body #paycart-template-12 form#formPayment .popup_wrapper1 .popup_wrapper_inner1{
	margin-bottom:0;
}
body #paycart-template-12 .form-outer .prod_outer_trans_div .product_power_cart, #preview_checkout_temp #paycart-template-1 form {
    margin-top: 10px;
}
 
body #paycart-template-1 .form-outer .prod_outer_trans_div, body #paycart-template-5 .form-outer .prod_outer_trans_div {
    padding-top: 5px;
    padding-bottom: 5px;
    float: none;
    max-width: 95%;
    margin: 0 auto 5px;
    display: table;
}

#paycart-template-5 .orderListInfo_outer {
    float: left;
    width: 100%;
}
#paycart-template-5 .payment-info-div .radio-inline label {
    padding-left: 0;
}

  #paycart-template-5.bootstrap-paycart-temp .paymnet-information-outer input[type=radio],   #paycart-template-6.bootstrap-paycart-temp .selectpaymentmethod input[type=radio] {
    width: 10px !important;
    height: 16px;
    margin-top: 6px;
    margin-right: 8px !important;
}
#paycart-template-6 .bump_product_div .popup_wrapper_main {
    padding: 0;
}

 body #paycart-template-13  .ui_helper_my_custom_element {float:left } 