/*
Theme Name: HR Accounting
Theme URI: https://hraccountinggroup.com
Author: Cocoa Perú
Author URI: http://cocoa.pe/
Description: Plantilla desarrollada para uso de HR Accounting
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

:root{
	--primary: #004593;
	--primaryhover: #0B386A;
	--secondary: #0082C4;
	--warning: #D4A92F;
	--info: #25B6F2;
	--success: #4D9888;
	--danger: #C53E34;
	--light: #F8F8F8;
	--dark: #2E2E2E;
	--white: #fff;
}

body, table, td{
	font-family: 'Work Sans', sans-serif;
	font-size: 20px;
	line-height: 1.3;
	color: #2E2E2E;
	overflow-x: hidden;
	overflow-y: auto;
	font-weight: 300;
}

body.show{
	overflow: hidden;
}

.font-family-poppins{
	font-family: 'Poppins', sans-serif;
	font-weight: normal;
}
.font-weight-semibold{
	font-weight: 600;
}
.font-weight-bold{
	font-weight: 700;
}

a,
a:hover{
	color: inherit;
	text-decoration: none;
}

input:focus,
input:active,
button:focus,
button:active,
.btn:active,
.btn:focus{
	box-shadow: none !important;
	outline: 0 none !important;
}

*:focus{
	outline: 0 none !important;
}

small, .small{ font-size: 85%; }

b, strong{ font-weight: 600; }

h1, .h1{ font-size: 48px;}
h2, .h2{ font-size: 42px;}
h3, .h3{ font-size: 35px;}
h4, .h4{ font-size: 26px;}
h5, .h5{ font-size: 22px;}
h6, .h6{ font-size: 20px;}

h1,h2,h3,h4,h5,h6{ line-height: 1.25; font-family: 'Poppins', sans-serif; font-weight: 400; margin-bottom: 20px; }
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong{ font-weight: 700; }

ul,ol{
	margin-bottom: 1.5rem;
}

ol:last-child,
ul:last-child,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child{
	margin-bottom: 0 !important;
}

p:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child{
	margin-top: 0 !important;
}

p{
	margin-bottom: 1.2rem;
}

ul{
	padding-left: 1em;
}

/*------------------------------ btn-trigger -------------------------*/

.btn-trigger{
	position: relative;
	display: none;
	min-width: 48px;
	height: 48px;
	border-radius: 50%;
	margin-left: auto;
	border: 1px solid #D5D9DD;
	background-color: transparent;
}

.btn-trigger span{
	display: block;
	position: absolute;
	width: 30px;
	height: 3px;
	background-color: #fff;
	left: calc(50% - 15px);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 9;
	border-radius: 50em;
}
.btn-trigger span:nth-child(1){
	top: calc(50% - 10px);
}
.btn-trigger span:nth-child(2),
.btn-trigger span:nth-child(3){
	top: calc(50% - 2px);
}
.btn-trigger span:nth-child(4){
	bottom: calc(50% - 10px);
}
.btn-trigger.show span:nth-child(2){
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color: var(--primary);
}
.btn-trigger.show span:nth-child(3){
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background-color: var(--primary);
}
.btn-trigger.show span:nth-child(1){
	top: 50%;
	opacity: 0;
}

.btn-trigger.show span:nth-child(4){
	bottom: 50%;
	opacity: 0;
}

/*------------------------------ Base -----------------------------*/

.hoverUp{
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.hoverUp:hover{
	-moz-transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-box-shadow: 0 10px 20px 0 rgba(0,0,0,0.08);
	box-shadow: 0 10px 20px 0 rgba(0,0,0,0.08);
}


div[class*=query]{
	margin-bottom: -40px;
}

div[class*=query] > *{
	margin-bottom: 40px;
}

.card_imagen{
	overflow: hidden;
}

.card_imagen img{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

*[class*=card]:hover .card_imagen img{
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

/*------------------------------ Bootstrap -----------------------------*/


@media (min-width: 1340px) {
	.container, .container-sm, .container-md, .container-lg, .container-xl {
		max-width: 1280px;
	}
}

@media (min-width: 1650px) {
	.container, .container-sm, .container-md, .container-lg, .container-xl {
		max-width: 1430px;
	}
}

.fade {
	transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
	.fade {
	 	transition: none;
	}
}

.fade:not(.show) {
	opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.modal button.close{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  	position: absolute;
	top: 15px;
	right: 15px;
	border: 0 none;
	padding: 0;
	background-color: var(--light);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.modal button.close:hover{
	background-color: var(--primary);
	color: #fff;
}

.modal button.close svg{
	display: block;
}

.modal-open {
overflow: hidden;
}

.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}

.modal {
position: fixed;
top: 0;
left: 0;
z-index: 1050;
display: none;
width: 100%;
height: 100%;
overflow: hidden;
outline: 0;
}

.modal-dialog {
position: relative;
width: auto;
margin: 0.5rem;
pointer-events: none;
}

.modal.fade .modal-dialog {
transition: -webkit-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
-webkit-transform: translate(0, -50px);
transform: translate(0, -50px);
}

  @media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
	  transition: none;
	}
  }

  .modal.show .modal-dialog {
	-webkit-transform: none;
	transform: none;
  }

  .modal-dialog-centered {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-height: calc(100% - 1rem);
  }

  .modal-dialog-centered::before {
	display: block;
	height: calc(100vh - 1rem);
	height: -webkit-min-content;
	height: -moz-min-content;
	height: min-content;
	content: "";
  }

  .modal-content {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	outline: 0;
  }

  .modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: #000;
  }

  .modal-backdrop.fade {
	opacity: 0;
  }

  .modal-backdrop.show {
	opacity: 0.9;
  }

  @media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.bg-primary{background-color: var(--primary) !important;}
.bg-primaryhover{background-color: var(--primaryhover) !important;}
.bg-secondary{background-color: var(--secondary) !important;}
.bg-info{background-color: var(--info) !important;}
.bg-warning{background-color: var(--warning) !important;}
.bg-success{background-color: var(--success) !important;}
.bg-danger{background-color: var(--danger) !important;}
.bg-dark{background-color: var(--dark) !important;}
.bg-light{background-color: var(--light) !important;}
.bg-white{background-color: #fff !important;}

.text-primary{color: var(--primary) !important;}
.text-primaryhover{color: var(--primaryhover) !important;}
.text-secondary{color: var(--secondary) !important;}
.text-info{color: var(--info) !important;}
.text-warning{color: var(--warning) !important;}
.text-success{color: var(--success) !important;}
.text-danger{color: var(--danger) !important;}
.text-dark{color: var(--dark) !important;}
.text-light{color: var(--light) !important;}
.text-white{ color:#fff !important;}

.rounded-sm{
	border-radius: 15px;
}

.rounded{
	border-radius: 20px;
}

.img-fluid{
	max-width: 100%;
	height: auto;
}

.img-fit{
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.w-100{
	width: 100%;
}

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

.stretched-link::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0);
}

.text-truncate{
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.h-100{
	height: 100%;
}

.py,.pt{ padding-top: 120px; }
.py,.pb{ padding-bottom: 120px; }
.my,.mt{ margin-top: 120px; }
.my,.mb{ margin-bottom: 120px; }

.border{ border: 1px solid #D5D9DD; }
.border-left{ border-left: 1px solid #D5D9DD; }
.border-right{ border-right: 1px solid #D5D9DD; }
.border-top{ border-top: 1px solid #D5D9DD; }
.border-bottom{ border-bottom: 1px solid #D5D9DD; }

.btn{
	display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	padding-top: 0;
	padding-bottom: 0;
	padding: 8px 30px;
	min-height: 38px;
	font-size: 16px;
	line-height: 1.1;
	font-weight: 400;
	border: 1px solid transparent;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	border-radius: 50em;
	vertical-align: middle;
	text-align: center;
}

.btn-group-sm>.btn, .btn-sm{
	min-height: 32px;
	font-size: 15px;
	padding: 4px 20px;
}

.btn-group-lg>.btn, .btn-lg{
	min-height: 55px;
	padding: 8px 50px;
	font-size: 14px;
	text-transform: uppercase;
}

.btn-square{
	min-width: 0;
	padding-left: 0 !important;
	padding-right: 0 !important;
	width: 38px;
}

.btn-lg.btn-square{
	width: 55px;
}
.btn-sm.btn-square{
	width: 32px;
}

.btn.btn-lg svg{
	width: 20px;
	height: 20px;
}

.btn.btn-sm svg{
	width: 14px;
	height: 14px;
}

.btn-primary:not(:disabled):not(.disabled):active,.btn-primary{ background-color: var(--primary);border-color: var(--primary); color: #fff;}
.btn-primary:hover, .btn-primary:focus{ background-color: var(--primaryhover); border-color: var(--primaryhover); color:#fff; }

.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary{ background-color: var(--secondary);border-color: var(--secondary); color: #fff;}
.btn-secondary:hover, .btn-secondary:focus{ background-color: var(--primary); border-color: var(--primary); color:#fff; }

.btn-info:not(:disabled):not(.disabled):active,.btn-info{ background-color: var(--info);border-color: var(--info); color: #fff;}
.btn-info:hover, .btn-info:focus{ background-color: var(--white); border-color: var(--white); color:var(--dark); }

.btn-outline-white:not(:disabled):not(.disabled):active,.btn-outline-white{ background-color: transparent;border-color: #fff;color: #fff;}
.btn-outline-white:hover, .btn-outline-white:focus{ background-color:var(--white); border-color: var(--white); color:var(--dark); }
.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark{ background-color: transparent;border-color: var(--dark);color:var(--dark);}
.btn-outline-dark:hover, .btn-outline-dark:focus{ background-color: var(--secondary); color:#fff; border-color: var(--secondary); }
.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary{ background-color: transparent;border-color: var(--secondary);color:var(--secondary);}
.btn-outline-secondary:hover, .btn-outline-secondary:focus{ background-color: var(--secondary); color:#fff; }

.btn-link{
	color: var(--secondary);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
	padding-bottom: 0;
	min-height: 0;
}

.btn-link:hover{
	color: var(--primary);
}

label, .label{
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 6px;
	color: #8C98A9;
}

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

.form-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
}

.form-row > .col,
.form-row > [class*="col-"] {
	padding-right: 10px;
	padding-left: 10px;
}

.form-control{
	display: block;
	width: 100%;
	min-height: 50px;
	font-size: 16px;
	padding: 10px 15px;
	border: 1px solid transparent;
	background-color: #EBEBEB;
	border-radius: 5px;
	color: #2E384D;
}

.form-control:focus{
	border-color: var(--primary);
	background-color: #fff;
}

.form-control-sm{
	min-height: 42px;
	font-size: 16px;
}

.form-control-lg{
	min-height: 62px;
	font-size: 22px;
}

.custom-select {
	display: inline-block;
	width: 100%;
	min-height: 50px;
	padding: 6px 15px;
	line-height: 1.5;
	background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 18px;
}

.custom-radio{
	min-height: 50px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	padding: 6px 0;
}

.custom-radio label{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	position: relative;
	margin-bottom: 0;
	align-items: center;
}

.custom-radio label:not(:last-child){
	margin-right: 30px;
}

.custom-radio label > input[type=radio]{
	position: absolute;
	opacity: 0;
	height: 1px;
}

.custom-radio label span.checkmark{
	position: relative;
	display: block;
	margin-left: 6px;
	width: 24px;
	height: 24px;
	border: 1.5px solid var(--secondary);
	border-radius: 50%;
	background-color: #fff;
}

.custom-radio label span.checkmark::before{
	content: '';
	display: block;
	position: absolute;
	top: 23%;
	left: 50%;
	width: 10px;
	height: 6px;
	-moz-transform: rotate(-45deg) translateX(-50%) translateY(-50%);
	-webkit-transform: rotate(-45deg) translateX(-50%) translateY(-50%);
	-o-transform: rotate(-45deg) translateX(-50%) translateY(-50%);
	-ms-transform: rotate(-45deg) translateX(-50%) translateY(-50%);
	transform: rotate(-45deg) translateX(-50%) translateY(-50%);
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	opacity: 0;
}

.custom-radio label > input[type=radio]:checked ~ span.checkmark{
	background-color: var(--secondary);
}

.custom-radio label > input[type=radio]:checked ~ span.checkmark::before{
	opacity: 1;
}

.form-actions{
	margin-top: 30px;
}

/*------------------------------ Slick -----------------------------*/

.slick-slider{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}

.slick-list{
	min-width: 100%;
	order: 1;
}
.slick-dots{
	order: 3;
}

.slick-dots{
	list-style: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	justify-content: center;
}

.slick-dots li:not(:last-child){
	margin-right: 3px;
}

.slick-dots li button{
	display: block;
	border: 0 none;
	padding: 0;
	font-size: 0;
	color: transparent;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	opacity: 0.3;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-moz-transform: scale(0.7);
	-webkit-transform: scale(0.7);
	-o-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	background-color: var(--primary);
}

.slick-dots li.slick-active button{
	opacity: 1;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.slick-dots li:only-child{
	display: none;
}

.slick-arrow{
	display: block;
	padding: 0;
	font-size: 0;
	color: transparent;
	width: 38px;
	height: 38px;
	border: 0 none;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px auto;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0.4;
}

.slick-arrow:hover{
	opacity: 1;
}

.slick-next{
	order: 4;
	background-image: url("data:image/svg+xml;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23004593' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	margin-left: 10px;
}
.slick-prev{
	order: 2;
	background-image: url("data:image/svg+xml;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23004593' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
	margin-right: 10px;
}

.accordion button{
	position: relative;
	display: block;
	text-align: left;
	padding: 0;
	background-color: transparent;
	border: 0 none;
	width: 100%;
}

.pagination .page-numbers{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	font-weight: 600;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pagination .page-numbers:hover{
	background-color: var(--secondary);
	color: #fff;
}

.pagination > .page-numbers:not(:last-child){
	margin-right: 6px;
}

.pagination .page-numbers.current{
	background-color: #EAF5FA;
	color: var(--secondary);
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev{
	text-indent: -999px;
    overflow: hidden;
    font-size: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px auto;
}

.pagination .page-numbers.next{
	background-image: url("data:image/svg+xml;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23333333' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.pagination .page-numbers.prev{
	background-image: url("data:image/svg+xml;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23333333' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.pagination .page-numbers.next:hover{
	background-image: url("data:image/svg+xml;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.pagination .page-numbers.prev:hover{
	background-image: url("data:image/svg+xml;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

/*------------------------------ Responsive -----------------------------*/

@media only screen and (max-width: 1680px){

	.py,.pt{ padding-top: 90px; }
	.py,.pb{ padding-bottom: 90px; }
	.my,.mt{ margin-top: 90px; }
	.my,.mb{ margin-bottom: 90px; }

}

@media only screen and (max-width: 1400px){

	.py,.pt{ padding-top: 70px; }
	.py,.pb{ padding-bottom: 70px; }
	.my,.mt{ margin-top: 70px; }
	.my,.mb{ margin-bottom: 70px; }

}

@media only screen and (max-width: 1200px){

	small, .small{
		font-size: 100%;
	}


	div[class*=query]{
		margin-bottom: -30px;
	}

	div[class*=query] > *{
		margin-bottom: 30px;
	}

}

@media only screen and (max-width: 992px){


}

@media only screen and (max-width: 767px){

	.py,.pt{ padding-top: 60px; }
	.py,.pb{ padding-bottom: 60px; }
	.my,.mt{ margin-top: 60px; }
	.my,.mb{ margin-bottom: 60px; }
	
	
	.btn-trigger{
		display: block;
		z-index: 1000;
	}
	
	.slick-dots li button{
		width: 8px;
		height: 8px;
	}
	
	.slick-dots li:not(:last-child){
		margin-right: 1px;
	}
	.pagination > .page-numbers:not(:last-child){
		margin-right: 4px;
	}
	.pagination .page-numbers{
		width: 34px;
		height: 34px;
		font-size: 16px;
	}
}

@media only screen and (max-width: 575px){

	.py,.pt{ padding-top: 40px; }
	.py,.pb{ padding-bottom: 40px; }
	.my,.mt{ margin-top: 40px; }
	.my,.mb{ margin-bottom: 40px; }
	
	.pagination .page-numbers:not(.prev):not(.next){
		width: 24px;
		height: 24px;
		font-size: 14px;
	}
	.pagination > .page-numbers:not(:last-child){
		margin-right: 0;
	}
	
	.pagination .page-numbers.next, .pagination .page-numbers.prev{
		background-color: var(--light);
		width: 38px;
		height: 38px;
	}
	.pagination .page-numbers.current{
		background-color: transparent;
	}
}