/*
Table Of Contents
 
 1.) Typography
 2.) Default Styles
 3.) Header - Main
 4.) Content - Main
 5.) Footer - Main
 6.) Inner - Pages
 7.) Text - Colors

========================================*/

/*
 1.) Typography
----------------------------------------*/

@import url("bootstrap.min-10.css") all;
@import url("brands.min-17.css") all;
@import url("light.min-17.css") all;
@import url("regular.min-17.css") all;
@import url("solid.min-17.css") all;
@import url("fontawesome.min-17.css") all;

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&amp;display=swap'); /* font-family: "Nunito", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap'); /* font-family: "Montserrat", sans-serif; */

@font-face {
    font-family: 'Nunito';
    src: url('../eot/nunito-medium.eot');
    src: url('../eot/nunito-mediumd41d.eot?#iefix') format('embedded-opentype'),
         url('../woff2/nunito-medium.woff2') format('woff2'),
         url('../woff/nunito-medium.woff') format('woff'),
         url('../ttf/nunito-medium.ttf') format('truetype'),
         url('../svg/nunito-medium.svg#Nunito-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/*
 2.) Default Styles
----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li {
	font-weight: inherit;
	padding: 0;
	margin: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	font-family: "Nunito", sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: #000000;
	line-height: 19px;
	background: #ffffff;
	margin: 0;
	padding: 0;
}

sub,
sup{
	font-size: 50%;
}

sup{
	top: -.7em;
}

img { 
	max-width: 100%;
}


/*= Links 
=======================================================*/

a {
	color: #ed7955;
	text-decoration: underline;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
}

a:hover,
a:focus,
a:active {
	color: #f98c6a;
	text-decoration: underline;
}

a:visited {
	outline: 0;
}

a[href^="tel:"], 
a[href^="fax:"] {
	color: #ed7955;
	text-decoration: underline;
}

a:hover[href^="tel:"], 
a:focus[href^="tel:"], 
a:hover[href^="fax:"],
a:focus[href^="fax:"] {
	color: #f98c6a;
	text-decoration: underline;
}


/*= Headings: P, H1, H2, H3, H4, H5, H6 
=======================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	color: #2a2c36;
	padding-bottom: 15px;
}

h1 {
	font-size: 36px;
	line-height: 46px;
}

h2 {
	font-size: 34px;
	line-height: 38px;
}

h3 {
	font-size: 21px;
	line-height: 25px;
}

h4 {
	font-size: 18px;
	line-height: 22px;
}

h5 {
	font-size: 14px;
	line-height: 18px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: inherit;
	font-style: inherit;
	color: inherit;
	text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
	color: #ed7955;
	text-decoration: underline;
}

p {
	padding-bottom: 15px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
	padding-bottom: 0;
}

i,
em {
	font-style: italic; 
}

em.fal,
em.far,
em.fas,
em.fab {
	font-style: normal; 
}

b,
strong {
	font-weight: 700; 
}

.light {
	font-weight: 300; 
}

.regular {
	font-weight: 400; 
}

.medium {
	font-weight: 500; 
}

.semibold {
	font-weight: 600; 
}

.bold {
	font-weight: 700; 
}

@media (max-width: 1399px) {
h2 {
	font-size: 30px;
	line-height: 34px;
}
}

@media (max-width: 991px) {
h2 {
	font-size: 28px;
	line-height: 32px;
}

h3 {
	font-size: 18px;
	line-height: 22px;
}
}

@media (max-width: 767px) {
h2 {
	font-size: 26px;
	line-height: 30px;
}
}


/* #Input Styles
================================================= */

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

select,
textarea,
input {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
	width: 100%;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #102622;
	line-height: 18px;
	position: relative;
	padding: 0 0 10px 0;
	margin: 0;
}

.rtllbe {
	position: absolute;
	top: 0;
	right: 0;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	width: 100%;
	height: 53px;
	font-weight: 600;
	font-size: 15px;
	color: #2a2c36;
	line-height: 19px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: #ffffff;
	border: 1px solid #939aac;
	border-radius: 4px;
	outline: none;
	overflow: hidden;
	position: relative;
	padding: 13px 20px;
	margin: 0;
}

textarea {
	height: 200px;
	white-space: normal;
	outline: none;
	resize: none;
}

select {
	background-image: url(../svg/icon-down.svg);
	background-position: top 18px right 15px;
	background-size: 15px auto;
	background-repeat: no-repeat;
	padding-top: 0;
	padding-right: 40px;
	padding-bottom: 0;
}

select::-ms-expand {
	display:none;
}

select.colorize option:not([disabled]) {
	color: #000000;
}

select.colorize option.def:not([disabled]),
select.colorize.empty:not([disabled]) {
	color: #939aac;
}

::-webkit-input-placeholder, 
::-webkit-textarea-placeholder {
	color: #939aac;
}

input::-moz-placeholder, 
textarea::-moz-placeholder {
	color: #939aac;
}

::-moz-placeholder {
	color: #939aac;
}

::-ms-input-placeholder {
	color: #939aac;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	border-color: #555bb3;
	box-shadow: rgba(0, 0, 0, .20) 0 0 8px;
	outline: 0;
}

@media (max-width: 767px) {
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	height: 45px;
	padding: 12px 20px;
}

select {
	background-position: top 14px right 15px;
	background-size: 14px auto;
}
}


/* Edit - Option */
.edit-option {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	position: relative;
	z-index: 5;
}


/* Opacity */
.opacity-0 {
	opacity: 0;
}


/* Checkbox / Radiobutton */
.custom-control {
	min-height: inherit;
	position: relative;
	padding: 0;
	margin: 0 0 20px 0;
}

.custom-control:last-child {
	margin-bottom: 0;
}

.custom-control .custom-control-label {
	width: auto;
	min-height: 20px;
	padding: 0 0 0 36px;
}

.custom-control .custom-control-label::before,
.custom-control .custom-control-label::after {
	width: 20px;
	height: 20px;
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	font-size: 12px;
	color: #939aac;
	line-height: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: #4a90e208;
	border: 1px solid #939aac;
	border-radius: 360px;
	top: -2px;
	left: 0;
	margin: 0;
}

.custom-control .custom-control-label::after {
	display: none;
}

.custom-control .custom-control-label::before {
	content: "";
}

.custom-control .custom-control-input:checked~.custom-control-label::before {
	content: "\f00c";
	color: #939aac;
    background: #4a90e208;
	border-color: #939aac;
}

.custom-control .edit-option {
	position: absolute;
	top: 0;
	right: 0;
}

.custom-control.wrap-right .custom-control-label {
	padding-right: 50px;
}

.custom-control.wrap-right2 .custom-control-label {
	padding-right: 150px;
}


/* Custom - Switch */
.custom-switch {
	padding-left: 0;
}

.custom-switch .custom-control-label {
	min-height: 23px;
	padding-left: 55px;
}

.custom-switch .custom-control-label::before {
	content: "";
	width: 40px;
	height: 23px;
	background: #edeff3;
	border: 1px solid #939aac;
	border-radius: 360px;
	top: -3px;
	left: 0;
}

.custom-switch .custom-control-label::after {
	content: "";
	width: 19px;
	height: 19px;
	display: block;
	background: #ffffff;
	border: none;
	border-radius: 360px;
	top: -1px;
	left: 1px;
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
	content: "";
	-webkit-transform: translateX(19px);
	transform: translateX(19px)
}

.custom-switch .custom-control-input:checked~.custom-control-label::before {
	content: "";
	background: #555bb3;
	border-color: #939aac;
}


/* Custom - Textarea Editor */
#editparent,
#editparent2 {
	width: 100%;
	background: #ffffff;
	border: 1px solid #939aac;
	border-radius: 4px;
	transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
	padding: 0;
	margin: 0;
}

#editparent:focus,
#editparent2:focus,
#editparent:active,
#editparent2:active,
#editparent.active,
#editparent2.active {
	border-color: #555bb3;
	box-shadow: rgba(0, 0, 0, .20) 0 0 8px;
	outline: 0;
}

#editor,
#editor2 {
	width: 100%;
	min-height: 180px;
	font-weight: 600;
	font-size: 15px;
	color: #2a2c36;
	line-height: 19px;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	outline: 0;
	resize: vertical;
	overflow: auto;
	padding: 0 20px 20px 20px;
	margin: 0;
}

#editor p,
#editor2 p {
	color: #2a2c36;
}

#editControls,
#editControls2 {
	height: 40px;
	float: right;
	padding: 10px 20px;
	margin: 0 -5px 0 0;
}

#editControls a,
#editControls2 a {
	float: left;
	font-size: 14px;
	color: #102622;
	line-height: 20px;
	text-decoration: none;
	padding: 0 5px;
	margin: 0;
}

#editControls a:hover,
#editControls a:focus,
#editControls a:active,
#editControls2 a:hover,
#editControls2 a:focus,
#editControls2 a:active {
	color: #ed7955;
	text-decoration: none;
}

#editor ul,
#editor ol,
#editor2 ul,
#editor2 ol {
	padding-left: 25px;
}


/* Upload - Image */
.file-select { 
	width: 100%;
	height: 260px;
	float: left;
	line-height: 1em;
	background: #f7f158;
	border: 1px solid #939aac;
	border-radius: 4px;
	position: relative; 
}

.file-select:focus,
.file-select:active,
.file-select.active {
	border-color: #555bb3;
	box-shadow: rgba(0, 0, 0, .20) 0 0 8px;
}

.file-select em {
	font-size: 40px;
	color: #5d63b6;
	line-height: 30px;
	padding-bottom: 20px;
}

.file-select h5 {
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	padding: 0 0 8px 0;
}

.file-select p {
	font-weight: 500;
	font-size: 15px;
	color: #5d63b6;
	line-height: 19px;
	padding: 0;
}

.file-select .file-select-name {
	width: 100%;
	height: 100%;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;	
	overflow: hidden;
	cursor: pointer;
}

.file-select .file-select-btn {
	width: 100%;
	float: left;
	text-align: center; 
	padding: 0; 
	margin: 0;
}

.file-select input[type=file] { 
	width: 100%; 
	height: 100%; 
	float: left; 
	position: absolute; 
	top: 0; 
	left: 0; 
	padding: 0; 
	margin: 0; 
	opacity: 0; 
	cursor: pointer;
}

.file-select.file-select-disabled { 
	opacity: 0.65;
}

.file-select .fa-trash-alt {
	width: 30px;
	height: 30px;
	float: right;
	font-size: 22px;
	color: #5d63b6;
	line-height: 30px;
	text-align: center;
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 1;
	cursor: pointer; 
	display: none;
}

.file-select.active .fa-trash-alt { 
	display: block;
}

.file-select.active .file-select-name {
	cursor: default;
}

.file-select.active .file-select-btn { 
	display: none;
}

@media (max-width: 499px) {
.file-select { 
	height: 200px;
}

.file-select em {
	font-size: 30px;
	line-height: 25px;
}

.file-select h5 {
	font-size: 12px;
	line-height: 16px;
}

.file-select p {
	font-size: 13px;
	line-height: 17px;
}

.file-select .fa-trash-alt {
	width: 30px;
	height: 30px;
	font-size: 18px;
	line-height: 30px;
}
}


/* #Buttons
================================================== */

/* Custom - Select */
button {
	background: none;
	border: none;
	box-shadow: none;
	text-decoration: none;
	white-space: normal;
	cursor: pointer;
	outline: 0;
	padding: 0;
	margin: 0;
}

button:hover,
button:focus,
button:active,
button:active:focus,
button.active,
button.active:focus {
	outline: 0;
	box-shadow: none;
}

.btn,
.button,
input[type=".button"],
input[type="submit"] {
	width: auto;
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #ffffff;
	line-height: 18px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	background: #555bb3;
	border: none;
	border-radius: 4px;
	box-shadow: none;
	position: relative;
	cursor: pointer;
	outline: 0;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	padding: 16px 45px;
	margin: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
.button:hover,
.button:focus,
.button:active,
.button:active:focus,
.button.active,
.button.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus,
.btn:not(:disabled):not(.disabled).active, 
.btn:not(:disabled):not(.disabled):active  {
	color: #ffffff;
	text-decoration: none; 
	background: #5e65c3;
	box-shadow: none;
	outline: 0;
}

.btn-orange, 
.button.btn-orange, 
input.btn-orange[type="button"], 
input.btn-orange[type="submit"] { 
	background-color: #ed7955;
}

.btn-orange:hover, 
.btn-orange:focus, 
.btn-orange:active, 
.btn-orange:active:focus, 
.btn-orange.active, 
.btn-orange.active:focus,
.button.btn-orange:hover, 
.button.btn-orange:focus, 
.button.btn-orange:active, 
.button.btn-orange:active:focus, 
.button.btn-orange.active, 
.button.btn-orange.active:focus, 
input.btn-orange[type="button"]:hover, 
input.btn-orange[type="button"]:focus, 
input.btn-orange[type="button"]:active, 
input.btn-orange[type="button"]:active:focus, 
input.btn-orange[type="button"].active, 
input.btn-orange[type="button"].active:focus, 
input.btn-orange[type="submit"]:hover, 
input.btn-orange[type="submit"]:focus, 
input.btn-orange[type="submit"]:active, 
input.btn-orange[type="submit"]:active:focus, 
input.btn-orange[type="submit"].active, 
input.btn-orange[type="submit"].active:focus,
.btn-orange:not(:disabled):not(.disabled).active, 
.btn-orange:not(:disabled):not(.disabled):active,
.show .btn-orange { 
	background-color: #f98c6a;
}

.btn-red, 
.button.btn-red, 
input.btn-red[type="button"], 
input.btn-red[type="submit"] { 
	background-color: #ff0000;
}

.btn-red:hover, 
.btn-red:focus, 
.btn-red:active, 
.btn-red:active:focus, 
.btn-red.active, 
.btn-red.active:focus,
.button.btn-red:hover, 
.button.btn-red:focus, 
.button.btn-red:active, 
.button.btn-red:active:focus, 
.button.btn-red.active, 
.button.btn-red.active:focus, 
input.btn-red[type="button"]:hover, 
input.btn-red[type="button"]:focus, 
input.btn-red[type="button"]:active, 
input.btn-red[type="button"]:active:focus, 
input.btn-red[type="button"].active, 
input.btn-red[type="button"].active:focus, 
input.btn-red[type="submit"]:hover, 
input.btn-red[type="submit"]:focus, 
input.btn-red[type="submit"]:active, 
input.btn-red[type="submit"]:active:focus, 
input.btn-red[type="submit"].active, 
input.btn-red[type="submit"].active:focus,
.btn-red:not(:disabled):not(.disabled).active, 
.btn-red:not(:disabled):not(.disabled):active,
.show .btn-red { 
	background-color: #fc3434;
}

.btn-green, 
.button.btn-green, 
input.btn-green[type="button"], 
input.btn-green[type="submit"] { 
	background-color: #5ce0c2;
}

.btn-green:hover, 
.btn-green:focus, 
.btn-green:active, 
.btn-green:active:focus, 
.btn-green.active, 
.btn-green.active:focus,
.button.btn-green:hover, 
.button.btn-green:focus, 
.button.btn-green:active, 
.button.btn-green:active:focus, 
.button.btn-green.active, 
.button.btn-green.active:focus, 
input.btn-green[type="button"]:hover, 
input.btn-green[type="button"]:focus, 
input.btn-green[type="button"]:active, 
input.btn-green[type="button"]:active:focus, 
input.btn-green[type="button"].active, 
input.btn-green[type="button"].active:focus, 
input.btn-green[type="submit"]:hover, 
input.btn-green[type="submit"]:focus, 
input.btn-green[type="submit"]:active, 
input.btn-green[type="submit"]:active:focus, 
input.btn-green[type="submit"].active, 
input.btn-green[type="submit"].active:focus,
.btn-green:not(:disabled):not(.disabled).active, 
.btn-green:not(:disabled):not(.disabled):active,
.show .btn-green { 
	background-color: #53d1b4;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn:focus,
.button:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: 2px;
}	

.btn-out {
	width: 100%;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 767px) {
.btn,
.button,
input[type=".button"],
input[type="submit"] {
	padding: 13px 35px;
}
}


/* Table */
table,
tbody,
thead,
tr,
th,
td {
	border-spacing: 0;
	border-collapse: collapse;
}


/* Figure */
figure { 
	padding: 0;
	margin: 0;
}

.break-word {
	word-wrap: break-word;
}


/* #Flying focus
================================================== */

#flying-focus {
	position: absolute;
	margin: 0;
	background: transparent;
	-webkit-transition-property: left, top, width, height, opacity;
	transition-property: left, top, width, height, opacity;
	-webkit-transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
	transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
	visibility: hidden;
	pointer-events: none;
	box-shadow: -webkit-focus-ring-color 0 0 0 2px; 
	border-radius: 0;
}

#flying-focus.flying-focus_visible {
	visibility: visible;
	z-index: 9999;
}

.flying-focus_target {
	outline: none !important; /* Doesn't work in Firefox :( */
}

/* http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/199319 */
.flying-focus_target::-moz-focus-inner {
	border: 0 !important;
}

/* Replace it with @supports rule when browsers catch up */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
#flying-focus {
	box-shadow: none;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: 2px;
}
}


/*= Container - Main
=======================================*/

.container-main {
	width: 100%;
	min-height: 100vh;
	float: left;
	position: relative;
	overflow: hidden;
}


/* Row */
.row {
	margin: -10px;
}

.row > div {
	padding: 10px;
}


/* SetOff */
.setoff-1 {
	margin-right: 8.333333%
}

.setoff-2 {
	margin-right: 16.666667%
}

.setoff-3 {
	margin-right: 25%
}

.setoff-4 {
	margin-right: 33.333333%
}

.setoff-5 {
	margin-right: 41.666667%
}

.setoff-6 {
	margin-right: 50%
}

.setoff-7 {
	margin-right: 58.333333%
}

.setoff-8 {
	margin-right: 66.666667%
}

.setoff-9 {
	margin-right: 75%
}

.setoff-10 {
	margin-right: 83.333333%
}

.setoff-11 {
	margin-right: 91.666667%
}

@media (min-width:576px) {
.setoff-sm-0 {
	margin-right: 0
}

.setoff-sm-1 {
	margin-right: 8.333333%
}

.setoff-sm-2 {
	margin-right: 16.666667%
}

.setoff-sm-3 {
	margin-right: 25%
}

.setoff-sm-4 {
	margin-right: 33.333333%
}

.setoff-sm-5 {
	margin-right: 41.666667%
}

.setoff-sm-6 {
	margin-right: 50%
}

.setoff-sm-7 {
	margin-right: 58.333333%
}

.setoff-sm-8 {
	margin-right: 66.666667%
}

.setoff-sm-9 {
	margin-right: 75%
}

.setoff-sm-10 {
	margin-right: 83.333333%
}

.setoff-sm-11 {
	margin-right: 91.666667%
}
}

@media (min-width:768px) {
.setoff-md-0 {
	margin-right: 0
}

.setoff-md-1 {
	margin-right: 8.333333%
}

.setoff-md-2 {
	margin-right: 16.666667%
}

.setoff-md-3 {
	margin-right: 25%
}

.setoff-md-4 {
	margin-right: 33.333333%
}

.setoff-md-5 {
	margin-right: 41.666667%
}

.setoff-md-6 {
	margin-right: 50%
}

.setoff-md-7 {
	margin-right: 58.333333%
}

.setoff-md-8 {
	margin-right: 66.666667%
}

.setoff-md-9 {
	margin-right: 75%
}

.setoff-md-10 {
	margin-right: 83.333333%
}

.setoff-md-11 {
	margin-right: 91.666667%
}
}

@media (min-width:992px) {
.setoff-lg-0 {
	margin-right: 0
}

.setoff-lg-1 {
	margin-right: 8.333333%
}

.setoff-lg-2 {
	margin-right: 16.666667%
}

.setoff-lg-3 {
	margin-right: 25%
}

.setoff-lg-4 {
	margin-right: 33.333333%
}

.setoff-lg-5 {
	margin-right: 41.666667%
}

.setoff-lg-6 {
	margin-right: 50%
}

.setoff-lg-7 {
	margin-right: 58.333333%
}

.setoff-lg-8 {
	margin-right: 66.666667%
}

.setoff-lg-9 {
	margin-right: 75%
}

.setoff-lg-10 {
	margin-right: 83.333333%
}

.setoff-lg-11 {
	margin-right: 91.666667%
}
}

@media (min-width:1200px) {
.setoff-xl-0 {
	margin-right: 0
}

.setoff-xl-1 {
	margin-right: 8.333333%
}

.setoff-xl-2 {
	margin-right: 16.666667%
}

.setoff-xl-3 {
	margin-right: 25%
}

.setoff-xl-4 {
	margin-right: 33.333333%
}

.setoff-xl-5 {
	margin-right: 41.666667%
}

.setoff-xl-6 {
	margin-right: 50%
}

.setoff-xl-7 {
	margin-right: 58.333333%
}

.setoff-xl-8 {
	margin-right: 66.666667%
}

.setoff-xl-9 {
	margin-right: 75%
}

.setoff-xl-10 {
	margin-right: 83.333333%
}

.setoff-xl-11 {
	margin-right: 91.666667%
}
}


/* User - Info */
.user-info {
	height: 129px;
	float: right;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	padding: 0 46px 0 58px;
}

.user-info .dropdown-toggle {
	text-decoration: none;
	padding: 0;
	margin: 0;
}

.user-info .dropdown-toggle:before,
.user-info .dropdown-toggle:after {
	display: none;
}

.user-info .figure {
	width: 36px;
	height: 36px;
	float: left;
	position: absolute;
	top: 50%;
	left: 0;
	margin: -18px 0 0 0;
}

.user-info .figure img {
	width: 100%;
	border-radius: 360px;
}

.user-info .name {
	font-weight: 600;
	font-size: 16px;
	color: #2a2c36;
	line-height: 20px;
}

.user-info .name span {
	display: block;
	color: #5d63b6;
}

.user-info .name span a {
	color: #5d63b6;
}

.user-info .icon {
	font-size: 20px;
	color: #939aac;
	line-height: 20px;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -10px 0 0 0;
}

.user-info .icon em,
.user-info .icon button {
	color: inherit;
}

.user-info .icon em:hover,
.user-info .icon button:hover,
.user-info .icon em:focus,
.user-info .icon button:focus,
.user-info .icon em:active,
.user-info .icon button:active,
.user-info:hover .icon em,
.user-info:hover .icon button,
.user-info.show .icon em,
.user-info.show .icon button {
	color: #ed7955;
}

.user-info .dropdown-menu {
	width: 100%;
	min-width: 150px;
	background: #f5f6fa;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 9px;
	top: 100px!important;
	transform: translate(0)!important;
	left: auto!important;
	right: 0!important;
	padding: 15px 23px;
	margin: 0;
}

.user-info .dropdown-menu ul,
.user-info .dropdown-menu ul li {
	width: 100%;
	padding: 0;
	margin: 0;
}

.user-info .dropdown-menu ul li a {
	width: 100%;
	display: block;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: #939aac;
	line-height: 19px;
	text-decoration: none;
	position: relative;
	padding: 6px 0 6px 32px;
}

.user-info .dropdown-menu ul li a:before {
	height: 19px;
	font-family: "Font Awesome 5 Pro";
	content: "\f007";
	font-weight: 400;
	font-size: 17px;
	line-height: 17px;
	position: absolute;
	top: 7px;
	left: 0;
}

.user-info .dropdown-menu ul li.usermenu-profile a:before {
	content: "\f007";
}

.user-info .dropdown-menu ul li.usermenu-settings a:before {
	content: "\f013";
}

.user-info .dropdown-menu ul li.usermenu-activity a:before {
	content: "\f03a";
}

.user-info .dropdown-menu ul li.usermenu-logout a:before {
	content: "\f08b";
}

.user-info .dropdown-menu ul li > a:focus,
.user-info .dropdown-menu ul li:hover > a,
.user-info .dropdown-menu ul li.active > a,
.user-info .dropdown-menu ul li.show > a {
	color: #5d63b6;
	text-decoration: none;
}

@media (max-width: 1199px) {
.user-info {
	display: none;
}
}


/* Dropdown - Menu */
.dropdown-menu {
	background: #ffffff;
	border: none;
	box-shadow: rgba(0, 0, 0, .17) 0 5px 25px;
	border-radius: 9px;
	padding: 20px;
	margin: 25px 0 -7px 0;
	z-index: 4;
}

.dropdown-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dropdown-menu ul li {
	list-style: none;
	padding: 0;
	margin: 10px 0;
}

.dropdown-menu ul li a {
	text-decoration: none;
}

.dropdown-menu ul li a:hover,
.dropdown-menu ul li a:focus,
.dropdown-menu ul li a:active {
	text-decoration: underline;
}


/* Tooltip */
.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
	border-top-color: #ed7955;
}

.bs-tooltip-auto[x-placement^=right] .arrow::before,
.bs-tooltip-right .arrow::before {
	border-right-color: #ed7955;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
	border-bottom-color: #ed7955;
}

.bs-tooltip-auto[x-placement^=left] .arrow::before,
.bs-tooltip-left .arrow::before {
	border-left-color: #ed7955;
}

.tooltip {
	margin: 5px 0;
}

.tooltip-inner {
	background-color: #ed7955;
	padding: 15px 10px;
}


/* Accordion */
.accord-list .card {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	background: none;
	border: 1px solid #939AAC;
	border-radius: 4px;
	padding: 0;
	margin: 0 0 10px 0;
}

.accord-list .card:last-child {
	margin-bottom: 0;
}

.accord-list .card-header {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	border: none;
	background: none;
	border-radius: 0;
	padding: 0;
	margin: 0;
}

.accord-list .card-header a {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #102622;
	line-height: 18px;
	text-decoration: none;
	border: none;
	background: none;
	border-radius: 0;
	position: relative;
	padding: 16px 20px;
	margin: 0;
}

.accord-list .card-header a:after {
	content: "\f077";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	font-size: 16px;
	color: #2a2c36;
	line-height: 20px;
	text-align: right;
	position: absolute;
	top: 50%;
	right: 20px;
	margin: -10px 0 0 0;
}

.accord-list .card-header a.collapsed:after {
	content: "\f078";
}

.accord-list .card-body {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 0 20px 20px 20px;
	margin: 0;
}

@media (max-width: 767px) {
.accord-list .card-header a:after {
	font-size: 15px;
}
}


/* Search - Box */
.search-box {
	width: 100%;
	display: block;
	position: relative;
}

.search-box form {
	width: 100%;
	display: block;
	position: relative;
}

.search-box textarea,
.search-box select,
.search-box input[type="text"],
.search-box input[type="password"],
.search-box input[type="datetime"],
.search-box input[type="datetime-local"],
.search-box input[type="date"],
.search-box input[type="month"],
.search-box input[type="time"],
.search-box input[type="week"],
.search-box input[type="number"],
.search-box input[type="email"],
.search-box input[type="url"],
.search-box input[type="search"],
.search-box input[type="tel"],
.search-box input[type="color"],
.search-box .uneditable-input {
	padding-left: 50px;
}

.search-box .btn,
.search-box .button,
.search-box input[type="button"],
.search-box input[type="submit"] {
	width: 54px;
	height: 53px;
	float: left;
	background: url(../svg/icon-search.svg) no-repeat center center;
	background-size: 17px auto;
	border: none;
	border-radius: 0;
	text-indent: -9999px;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}

.search-box .btn:hover,
.search-box .btn:focus,
.search-box .btn:active,
.search-box .btn:active:focus,
.search-box .btn.active,
.search-box .btn.active:focus,
.search-box .button:hover,
.search-box .button:focus,
.search-box .button:active,
.search-box .button:active:focus,
.search-box .button.active,
.search-box .button.active:focus,
.search-box input[type="button"]:hover,
.search-box input[type="button"]:focus,
.search-box input[type="button"]:active,
.search-box input[type="button"]:active:focus,
.search-box input[type="button"].active,
.search-box input[type="button"].active:focus,
.search-box input[type="submit"]:hover,
.search-box input[type="submit"]:focus,
.search-box input[type="submit"]:active,
.search-box input[type="submit"]:active:focus,
.search-box input[type="submit"].active,
.search-box input[type="submit"].active:focus,
.search-box .btn:not(:disabled):not(.disabled).active,
.search-box .btn:not(:disabled):not(.disabled):active {
	background: url(../svg/icon-search-orange.svg) no-repeat center center;
	background-size: 17px auto;
}

@media (max-width: 767px) {
.search-box .btn,
.search-box .button,
.search-box input[type="button"],
.search-box input[type="submit"] {
	height: 45px;
}
}


/* Accord - Field */
.accord-field .accord-label {
	padding-bottom: 20px;
}

.accord-field .accord-label:after {
	content: "\f077";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	font-size: 12px;
	line-height: 12px;
	margin: 1px 0 -1px 7px;
}

.accord-field .accord-label.collapsed {
	padding-bottom: 0;
}

.accord-field .accord-label.collapsed:after {
	content: "\f078";
}

.accord-field .custom-control .custom-control-label::before {
	border-color: #4a90e2;
}

.accord-field .custom-control .custom-control-label::before,
.accord-field .custom-control .custom-control-label::after {
	color: #4a90e2;
}

.accord-field .custom-control .custom-control-input:checked~.custom-control-label::before {
	color: #4a90e2;
	border-color: #4a90e2;
}


/*
 3.) Header - Main
----------------------------------------*/

.header-main {
	width: 295px;
	min-height: 100vh;
	float: left;
	background: #10020205;
	position: relative;
	margin: 0 -295px 0 0;
}

.header-main:after {
	content: "";
	width: 100%;
	height: 100000px;
	float: left;
	background: #10020205;
	position: absolute;
	top: 100%;
	left: 0;
}

.header-main .brand {
	width: 100%;
	height: 129px;
	float: left;
	line-height: 129px;
	text-align: center;
}

.header-main .brand img {
	width: 100%;
	max-width: 165px;
	padding: 15px;
}

.header-main .offcanvas-cont {
	width: 100%;
	float: left;
	padding: 50px 40px 240px 40px;
}

.header-main .sidebar-title {
	width: 100%;
	float: left;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #2a2c36;
	line-height: 22px;
	padding-bottom: 20px;
}

.header-main .sidebar-title:last-child {
	padding-bottom: 0;
}

.header-main .select-cont {
	width: 100%;
	float: left;
	background: #ffd8da;
	border-radius: 12px;
	margin-bottom: 37px;
}

.header-main .select-cont:last-child {
	margin-bottom: 0;
}

.header-main .select-cont .select-btn {
	width: 100%;
	height: 60px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	color: #2a2c36;
	line-height: 20px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	padding: 0 45px 0 25px;
}

.header-main .select-cont .select-btn:after {
	height: 20px;
	float: right;
	font-family: "Font Awesome 5 Pro";
	content: "\f077";
	font-weight: 900;
	font-size: 16px;
	color: #555bb3;
	line-height: 20px;
	text-align: center;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 50%;
	right: 25px;
	margin: -9px 0 0 0;
}

.header-main .select-cont .select-btn.collapsed:after {
	content: "\f078";
}

.header-main .select-cont .search-box {
	padding: 0 25px;
	margin-bottom: 10px;
}

.header-main .select-cont .search-box textarea,
.header-main .select-cont .search-box select,
.header-main .select-cont .search-box input[type="text"],
.header-main .select-cont .search-box input[type="password"],
.header-main .select-cont .search-box input[type="datetime"],
.header-main .select-cont .search-box input[type="datetime-local"],
.header-main .select-cont .search-box input[type="date"],
.header-main .select-cont .search-box input[type="month"],
.header-main .select-cont .search-box input[type="time"],
.header-main .select-cont .search-box input[type="week"],
.header-main .select-cont .search-box input[type="number"],
.header-main .select-cont .search-box input[type="email"],
.header-main .select-cont .search-box input[type="url"],
.header-main .select-cont .search-box input[type="search"],
.header-main .select-cont .search-box input[type="tel"],
.header-main .select-cont .search-box input[type="color"],
.header-main .select-cont .search-box .uneditable-input {
	height: 40px;
	font-size: 14px;
	line-height: 18px;
	padding: 8px 10px 8px 40px;
}

.header-main .select-cont .search-box .btn,
.header-main .select-cont .search-box .button,
.header-main .select-cont .search-box input[type="button"],
.header-main .select-cont .search-box input[type="submit"] {
	width: 40px;
	height: 40px;
	background-size: 14px auto;
}

.header-main .select-cont .search-box .btn:hover,
.header-main .select-cont .search-box .btn:focus,
.header-main .select-cont .search-box .btn:active,
.header-main .select-cont .search-box .btn:active:focus,
.header-main .select-cont .search-box .btn.active,
.header-main .select-cont .search-box .btn.active:focus,
.header-main .select-cont .search-box .button:hover,
.header-main .select-cont .search-box .button:focus,
.header-main .select-cont .search-box .button:active,
.header-main .select-cont .search-box .button:active:focus,
.header-main .select-cont .search-box .button.active,
.header-main .select-cont .search-box .button.active:focus,
.header-main .select-cont .search-box input[type="button"]:hover,
.header-main .select-cont .search-box input[type="button"]:focus,
.header-main .select-cont .search-box input[type="button"]:active,
.header-main .select-cont .search-box input[type="button"]:active:focus,
.header-main .select-cont .search-box input[type="button"].active,
.header-main .select-cont .search-box input[type="button"].active:focus,
.header-main .select-cont .search-box input[type="submit"]:hover,
.header-main .select-cont .search-box input[type="submit"]:focus,
.header-main .select-cont .search-box input[type="submit"]:active,
.header-main .select-cont .search-box input[type="submit"]:active:focus,
.header-main .select-cont .search-box input[type="submit"].active,
.header-main .select-cont .search-box input[type="submit"].active:focus,
.header-main .select-cont .search-box .btn:not(:disabled):not(.disabled).active,
.header-main .select-cont .search-box .btn:not(:disabled):not(.disabled):active {
	background-size: 14px auto;
}

.header-main .select-cont ul {
	width: 100%;
	max-height: 175px;
	list-style: none;
	overflow: auto;
	overflow-x: hidden;
	padding: 0;
	margin: 0;
}

.header-main .select-cont ul li {
	list-style: none;
	padding: 0;
	margin: 0;
}

.header-main .select-cont ul li:before {
	display: none;
}

.header-main .select-cont ul li > a {
	width: 100%;
	display: block;
	font-weight: 700;
	font-size: 16px;
	color: #2a2c36;
	line-height: 20px;
	text-decoration: none;
	position: relative;
	padding: 7px 45px 7px 25px;
}

.header-main .select-cont ul li > a:hover,
.header-main .select-cont ul li > a:focus,
.header-main .select-cont ul li > a:active,
.header-main .select-cont ul li > a.active {
	color: #5d63b6;
}

.header-main .main-menu {
	width: 100%;
	float: left;
}

.header-main .main-menu ul {
	width: 100%;
	float: left;
	list-style: none;
	padding: 0;
	margin: -14px 0;
}

.header-main .main-menu ul li {
	width: 100%;
	float: left;
	list-style: none;
	position: relative;
	padding: 0;
	margin: 0;
}

.header-main .main-menu ul li:before {
	display: none;
}

.header-main .main-menu ul li > a {
	width: 100%;
	float: left;
	font-weight: 600;
	font-size: 18px;
	color: #2a2c36;
	line-height: 22px;
	text-decoration: none;
	position: relative;
	padding: 14px 17px 14px 69px;
}

.header-main .main-menu ul li > a:before {
	content: "";
	width: 30px;
	height: 30px;
	float: left;
	line-height: 30px;
	text-align: center;
	background: url(../svg/icon-dashboard.svg) no-repeat left center;
	position: absolute;
	top: 50%;
	left: 17px;
	margin: -15px 0 0 0;
}

.header-main .main-menu ul li > a:focus,
.header-main .main-menu ul li:hover > a,
.header-main .main-menu ul li.active > a,
.header-main .main-menu ul li.show > a {
	color: #5d63b6;
}

.header-main .main-menu ul li > a:focus:before,
.header-main .main-menu ul li:hover > a:before,
.header-main .main-menu ul li.active > a:before,
.header-main .main-menu ul li.show > a:before {
	background-image: url(../svg/icon-dashboard-active.svg);
}

.header-main .main-menu ul li.menu-dashboard > a:before {
	background-image: url(../svg/icon-dashboard.svg);
}

.header-main .main-menu ul li.menu-dashboard > a:focus:before,
.header-main .main-menu ul li.menu-dashboard:hover > a:before,
.header-main .main-menu ul li.menu-dashboard.active > a:before,
.header-main .main-menu ul li.menu-dashboard.show > a:before {
	background-image: url(../svg/icon-dashboard-active.svg);
}

.header-main .main-menu ul li.menu-orders > a:before {
	background-image: url(../svg/icon-orders.svg);
}

.header-main .main-menu ul li.menu-orders > a:focus:before,
.header-main .main-menu ul li.menu-orders:hover > a:before,
.header-main .main-menu ul li.menu-orders.active > a:before,
.header-main .main-menu ul li.menu-orders.show > a:before {
	background-image: url(../svg/icon-orders-active.svg);
}

.header-main .main-menu ul li.menu-products > a:before {
	background-image: url(../svg/icon-products.svg);
	background-size: 26px auto;
}

.header-main .main-menu ul li.menu-products > a:focus:before,
.header-main .main-menu ul li.menu-products:hover > a:before,
.header-main .main-menu ul li.menu-products.active > a:before,
.header-main .main-menu ul li.menu-products.show > a:before {
	background-image: url(../svg/icon-products-active.svg);
}

.header-main .main-menu ul li.menu-reports > a:before {
	background-image: url(../svg/icon-reports.svg);
}

.header-main .main-menu ul li.menu-reports > a:focus:before,
.header-main .main-menu ul li.menu-reports:hover > a:before,
.header-main .main-menu ul li.menu-reports.active > a:before,
.header-main .main-menu ul li.menu-reports.show > a:before {
	background-image: url(../svg/icon-reports-active.svg);
}

.header-main .main-menu ul li.menu-pages > a:before {
	background-image: url(../svg/icon-pages.svg);
}

.header-main .main-menu ul li.menu-pages > a:focus:before,
.header-main .main-menu ul li.menu-pages:hover > a:before,
.header-main .main-menu ul li.menu-pages.active > a:before,
.header-main .main-menu ul li.menu-pages.show > a:before {
	background-image: url(../svg/icon-pages-active.svg);
}

.header-main .main-menu ul li.menu-settings > a:before {
	background-image: url(../svg/icon-settings.svg);
}

.header-main .main-menu ul li.menu-settings > a:focus:before,
.header-main .main-menu ul li.menu-settings:hover > a:before,
.header-main .main-menu ul li.menu-settings.active > a:before,
.header-main .main-menu ul li.menu-settings.show > a:before {
	background-image: url(../svg/icon-settings-active.svg);
}

.header-main .main-menu ul li a.dropdown-toggle:after {
	height: 20px;
	float: right;
	font-family: "Font Awesome 5 Pro";
	content: "\f078";
	font-weight: 900;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	border: none;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 50%;
	right: 0;
	padding: 0;
	margin: -9px 0 0 0;
}

.header-main .main-menu ul li.show a.dropdown-toggle:after {
	content: "\f077";
}

.header-main .main-menu ul li .dropdown-menu {
	width: 252px;
	background: #f5f6fa;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 9px;
	top: 0!important;
	transform: translate(0)!important;
	right: auto!important;
	left: 230px!important;
	padding: 15px 23px;
	margin: 0;
}

.header-main .main-menu ul li ul,
.header-main .main-menu ul li ul li {
	padding: 0;
	margin: 0;
}

.header-main .main-menu ul li ul li a {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: #939aac;
	line-height: 19px;
	padding: 5px 0 5px 36px;
}

.header-main .main-menu ul li ul li a:before {
	width: 20px;
	font-family: "Font Awesome 5 Pro";
	content: "\f068";
	font-size: 15px;
	background: none!important;
	left: 0;
}

.header-main .main-menu ul li ul li.tick a:before {
	content: "\f058";
	font-weight: 400;
	font-size: 20px;
}

.header-main .main-menu ul li ul li a:after {
	display: none;
}

.header-main .main-menu ul li ul li > a:focus,
.header-main .main-menu ul li ul li:hover > a,
.header-main .main-menu ul li ul li.active > a,
.header-main .main-menu ul li ul li.show > a {
	color: #5d63b6;
}

.header-main .btn-sticky {
	width: 100%;
	float: left;
	position: absolute;
	bottom: 65px;
	left: 0;
	padding: 0 40px;
}

.header-main .btn-sticky a {
	width: 100%;
	height: 94px;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #2a2c36;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	background: #f7f259;
	border-radius: 12px;
	position: relative;
	padding: 0 95px 0 20px;
}

.header-main .btn-sticky a:after {
	width: 50px;
	height: 50px;
	float: right;
	font-family: "Font Awesome 5 Pro";
	content: "\f067";
	font-weight: 400;
	font-size: 16px;
	color: #ffffff;
	line-height: 50px;
	text-align: center;
	background: #ed7955;
	border-radius: 360px;
	position: absolute;
	top: 50%;
	right: 24px;
	margin: -25px 0 0 0;
}

.header-main .btn-sticky a:hover,
.header-main .btn-sticky a:focus,
.header-main .btn-sticky a:active {
	background: #efe821;
}

.header-main .user-info {
	display: none;
}

.header-main .menu-btn {
	width: 30px;
	height: 23px;
	float: left;
	position: relative;
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 40px;
	z-index: 112;
	display: none;
	margin: -11.5px 0 0 0;
}

.header-main .menu-btn .menu-bar {
	width: 100%;
	height: 3px;
	float: left;
	background: #939aac;
	text-indent: -99999px;
	position: relative;
	transition: all 0.2s ease;
	margin: 0;
}

.header-main .menu-btn .menu-bar:before,
.header-main .menu-btn .menu-bar:after {
	content: "";
	width: 100%;
	height: 3px;
	float: left;
	background: #939aac;
	position: absolute;
	left: 0;
	transition: all 0.2s ease;
}

.header-main .menu-btn .menu-bar:before {
	top: -10px;
}

.header-main .menu-btn .menu-bar:after {
	top: 10px;
}

.header-main .menu-btn.active .menu-bar {
	background: none;
}

.header-main .menu-btn.active .menu-bar:before,
.header-main .menu-btn.active .menu-bar:after {
	top: 0;
}

.header-main .menu-btn.active .menu-bar:before {
	background-color: #ed7955;
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}

.header-main .menu-btn.active .menu-bar:after {
	background-color: #ed7955;
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}

.header-main .user-btn {
	width: 30px;
	height: 30px;
	float: right;
	font-size: 30px;
	color: #939aac;
	line-height: 30px;
	text-align: right;
	position: relative;
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 40px;
	z-index: 112;
	display: none;
	margin: -15px 0 0 0;
}

.header-main .user-btn img {
	width: 100%;
	border-radius: 360px;
}

.header-main .user-btn.active {
	background: url(../svg/icon-close.svg) no-repeat center center;
	background-size: 20px auto;
	text-indent: 999999px;
}

@media (max-width: 1199px) {
.hiddenscroll {
	overflow: hidden;
}
	
.overlay-menu,
.overlay-user {
	width: 100%;
	height: 100%;
	float: left;
	background: rgba(0, 0, 0, .50);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 110;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: top .15s ease-out;
	-moz-transition: top .15s ease-out;
	transition: top .15s ease-out;
	overflow: hidden;
}

.overlay-menu.active,
.overlay-user.active {
	visibility: visible;
	opacity: .95;
	-webkit-transition: opacity .2s ease-out;
	-moz-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}

.header-main {
	width: 100%;
	min-height: 70px;
	height: 70px;
	background: #f0f0f0;
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	z-index: 1000;
}

.header-main:after {
	display: none;
}

.header-main .brand {
	width: 100%;
	height: 70px;
	float: left;
	line-height: 70px;
	text-align: center;
	position: relative;
	z-index: 111;
}

.header-main .brand img {
	max-width: 100px;
	padding: 0;
}
	
.header-main .offcanvas-cont {
	width: 295px;
	height: 100%;
	float: left;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	transition: all .25s ease-out;
	overflow: auto;
	overflow-x: hidden;
	position: fixed;
	top: 0;
	left: -295px;
	z-index: 111;
	padding: 70px 0 0 0;
}

.header-main .offcanvas-cont.active {
	left: 0;
}

.header-main .offcanvas-cont .innerbar-cont {
	width: 100%;
	height: 100%;
	float: left;
	background: #fafafa;
	overflow: auto;
	overflow-x: hidden;
	padding: 0;
	margin: 0;
}

.header-main .overflow-cont {
	width: 100%;
	float: left;
	padding: 40px 30px;
}

.header-main .main-menu ul li .dropdown-menu {
	width: 100%;
	background: none;
	box-shadow: none;
	border-radius: 0;
	position: static!important;
	top: 0!important;
	transform: translate(0)!important;
	right: auto!important;
	left: 0!important;
	padding: 5px 0 15px 69px;
	margin: 0;
}

.header-main .main-menu ul li ul li a {
	width: 110%;
	font-size: 14px;
	line-height: 18px;
	padding: 5px 0 5px 26px;
}

.header-main .main-menu ul li ul li a:before {
	width: 17px;
	font-size: 13px;
}

.header-main .main-menu ul li ul li.tick a:before {
	font-size: 17px;
}

.header-main .btn-sticky {
	position: relative;
	bottom: 0;
	left: 0;
	padding: 50px 0 0 0;
}

.header-main .btn-sticky a {
	height: 80px;
	padding: 0 85px 0 20px;
}

.header-main .btn-sticky a:after {
	width: 40px;
	height: 40px;
	font-size: 16px;
	line-height: 40px;
	margin: -25px 0 0 0;
}

.header-main .menu-btn,
.header-main .user-btn {
	display: block;
}

.header-main .user-info {
	width: 240px;
	height: auto;
	float: right;
	background: #fafafa;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 70px;
	right: -100%;
	display: block;
	z-index: 111;
	padding: 0;
}

.header-main .user-info.active {
	visibility: visible;
	opacity: 1;
	right: 0;
}

.user-info .figure {
	width: 42px;
	height: 42px;
	left: 30px;
	margin: -21px 0 0 0;
}

.header-main .user-info .icon {
	display: none;
}

.header-main .user-info .wrap-user {
	width: 100%;
	float: left;
	border-bottom: 1px solid #dddddd;
	position: relative;
	cursor: default;
	padding: 20px 20px 20px 95px;
}

.header-main .user-info .dropdown-menu {
	width: 100%;
	min-width: 100%;
	background: none;
	box-shadow: none;
	border-radius: 0;
	position: static!important;
	top: 0!important;
	display: block!important;
	padding: 20px 20px 20px 40px;
	margin: 0;
}
}

@media (max-width: 767px) {
.header-main {
	min-height: 60px;
	height: 60px;
}

.header-main .brand {
	height: 60px;
	line-height: 58px;
}

.header-main .brand img {
	max-width: 100px;
}
	
.header-main .offcanvas-cont {
	padding: 60px 0 0 0;
}

.header-main .menu-btn {
	width: 27px;
	left: 20px;
}

.header-main .user-btn {
	right: 20px;
}

.header-main .user-info {
	top: 60px;
}
}


/* Content - Main */
.content-main {
	width: 100%;
	float: left;
	padding: 30px 40px 80px 335px;
}

.container {
	max-width: 1700px;
	padding: 0;
}

@media (max-width: 1799px) {
.content-main {
	padding: 30px 40px 80px 335px;
}
}

@media (max-width: 1199px) {
.content-main {
	padding: 100px 40px 80px 40px;
}
}

@media (max-width: 767px) {
.content-main {
	padding: 90px 20px 60px 20px;
}
}


/* Main - Topbar */
.main-topbar {
	width: 100%;
	height: 129px;
	float: none;
	display: inline-block;
	vertical-align: top;
	position: relative;
	margin: -30px 0 30px 0;
}

.main-topbar:before {
	content: "";
	width: 10000px;
	height: 100%;
	float: left;
	background: #fafafa;
	position: absolute;
	top: 0;
	left: -5000px;
	z-index: -1;
}

.main-topbar .left-out {
	height: 129px;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.main-topbar .left-out h1,
.main-topbar .left-out .topbar-title {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 21px;
	color: #2a2c36;
	line-height: 25px;
	padding-bottom: 5px;
}

.main-topbar .left-out h1:last-child,
.main-topbar .left-out .topbar-title:last-child {
	padding-bottom: 0;
}

.main-topbar .left-out p,
.main-topbar .left-out .sml-txt {
	font-size: 16px;
	line-height: 20px;
	padding-bottom: 0;
}

.main-topbar .left-out p a,
.main-topbar .left-out .sml-txt a {
	color: #000000;
	text-decoration: none;
}

.main-topbar .left-out p a:hover,
.main-topbar .left-out p a:focus,
.main-topbar .left-out p a:active,
.main-topbar .left-out .sml-txt a:hover,
.main-topbar .left-out .sml-txt a:focus,
.main-topbar .left-out .sml-txt a:active {
	color: #ed7955;
	text-decoration: underline;
}

@media (max-width: 1199px) {
.main-topbar {
	height: auto;
}

.main-topbar .left-out {
	height: auto;
	min-height: 80px;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 30px 0;
}

.main-topbar .left-out h1,
.main-topbar .left-out .topbar-title {
	font-size: 18px;
	line-height: 22px;
}
}


/* Content - With Sidebar */
.content-with-sidebar {
	width: 100%;
	float: left;
	position: relative;
	padding: 0 50px 0 302px;
}

@media (max-width: 1899px) {
.content-with-sidebar {
	padding: 0 0 0 302px;
}
}

@media (max-width: 1299px) {
.content-with-sidebar {
	padding: 0 0 0 260px;
}
}

@media (max-width: 991px) {
.content-with-sidebar {
	padding: 0;
}
}


/* SubSide - Bar */
.subside-bar {
	width: 252px;
	float: left;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}

.subside-bar .box {
	width: 100%;
	float: left;
	background: #f5f6fa;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 9px;
	padding: 15px 23px 25px 23px;
	margin: 0 0 -10px 0;
}

.subside-bar .box:last-child {
	margin-bottom: 0;
}

.subside-bar .box ul,
.subside-bar .box li {
	list-style: none;
	padding: 0;
	margin: 0;
}

.subside-bar .box li a {
	width: 100%;
	display: block;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: #939aac;
	line-height: 19px;
	text-decoration: none;
	position: relative;
	padding: 5px 0 5px 36px;
}

.subside-bar .box li a:before {
	width: 20px;
	font-family: "Font Awesome 5 Pro";
	content: "\f058";
	font-weight: 400;
	font-size: 20px;
	position: absolute;
	top: 4px;
	left: 0;
}

.subside-bar .box li a:after {
	display: none;
}

.subside-bar .box li > a:focus,
.subside-bar .box li:hover > a,
.subside-bar .box li.active > a,
.subside-bar .box li.show > a {
	font-weight: 700;
	color: #2a2c36;
}

.subside-bar .box:nth-child(even) {
	background: #555bb3 url(../png/blue-bg.png) no-repeat center center;
	background-size: cover;
	box-shadow: 0px 3px 6px #00000029;
}

.subside-bar .box:nth-child(even) li a {
	color: #ffffff;
}

.subside-bar .box:nth-child(even) li a:before {
	content: "\f192";
	color: #ffd8da;
}

.subside-bar .box:nth-child(even) li > a:focus,
.subside-bar .box:nth-child(even) li:hover > a,
.subside-bar .box:nth-child(even) li.active > a,
.subside-bar .box:nth-child(even) li.show > a {
	color: #ed7955;
}

.subside-bar .box:nth-child(even) li > a:focus:before,
.subside-bar .box:nth-child(even) li:hover > a:before,
.subside-bar .box:nth-child(even) li.active > a:before,
.subside-bar .box:nth-child(even) li.show > a:before {
	color: #ed7955;
}

@media (max-width: 1299px) {
.subside-bar {
	width: 210px;
}
}

@media (max-width: 991px) {
.subside-bar {
	width: 100%;
	float: left;
	position: relative;
	margin: 0 0 30px 0;
}

.subside-bar .box {
	padding-bottom: 20px;
}

.subside-bar .box:last-child {
	padding-bottom: 15px;
}

.subside-bar .box ul {
	float: left;
	margin: 0 -30px 0 0;
}

.subside-bar .box li {
	float: left;
	margin: 0 25px 0 0;
}

.subside-bar .box li a {
	width: auto;
}
}

@media (max-width: 767px) {
.subside-bar .box ul {
	margin: 0 -30px 0 0;
}

.subside-bar .box li {
	margin: 0 15px 0 0;
}
}

@media (max-width: 575px) {
.subside-bar .box ul {
	width: 100%;
	margin: 0;
}

.subside-bar .box li {
	width: 50%;
	margin: 0;
}
}

@media (max-width: 359px) {
.subside-bar .box {
	padding-left: 15px;
	padding-right: 15px;
}

.subside-bar .box li a {
	font-size: 14px;
	line-height: 18px;
	padding-left: 30px;
}
}


/* Search - Box */
.search-bar {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 30px;
}

.search-bar:last-child {
	margin-bottom: 0;
}

.search-bar .row {
	justify-content: flex-end;
	padding: 0 0 20px 0;
	margin: -10px;
}

.search-bar .row:last-child {
	padding-bottom: 0;
}

.search-bar .row > div {
	padding: 10px;
}

.search-bar textarea,
.search-bar select,
.search-bar input[type="text"],
.search-bar input[type="password"],
.search-bar input[type="datetime"],
.search-bar input[type="datetime-local"],
.search-bar input[type="date"],
.search-bar input[type="month"],
.search-bar input[type="time"],
.search-bar input[type="week"],
.search-bar input[type="number"],
.search-bar input[type="email"],
.search-bar input[type="url"],
.search-bar input[type="search"],
.search-bar input[type="tel"],
.search-bar input[type="color"],
.search-bar .uneditable-input {
	border-radius: 12px;
}

.search-bar .btn-out {
	float: right;
	text-align: right;
	margin: 0 0 -20px -18px;
}

.search-bar .btn-out .btn {
	width: 100%;
	max-width: 175px;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 0 20px 18px;
}

.search-bar .report-box {
	width: 100%;
	height: 100%;
	float: left;
	background: #ffffff;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 12px;
	position: relative;
	padding: 20px;
}

.search-bar .report-box h3 {
	color: #5d63b6;
	padding-bottom: 0;
}

.search-bar .report-box p {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #102622;
	line-height: 18px;
	padding-bottom: 10px;
}

.search-bar .report-box p:last-child {
	padding-bottom: 0;
}

.search-bar .report-box .edit-option {
	position: absolute;
	top: 20px;
	right: 20px;
}

.search-bar .report-box .progress-txt {
	width: 100%;
	float: left;
	position: relative;
	padding-right: 60px;
}

.search-bar .report-box .progress-value {
	position: absolute;
	top: 0;
	right: 0;
	text-align: right;
}

.search-bar .report-box .progress {
	width: 100%;
	height: 12px;
	float: left;
	display: block;
	background: #ed7955;
	border-radius: 0;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 10px 0 0 0;
}

.search-bar .report-box .progress .progress-bar {
	width: 100%;
	height: 100%;
	float: left;
	background: #555bb3;
	border-radius: 0;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}

.search-bar .report-box .split-cl {
	width: 50%;
	float: left;
}

.search-bar .report-box .split-cl:nth-child(2) {
	margin-right: -5%;
	margin-left: 5%;
}

@media (max-width: 1599px) {
.search-bar .btn-out {
	width: 104%;
	float: left;
	display: flex;
	flex-wrap: wrap;
	margin: -2%;
}

.search-bar .btn-out .btn {
	max-width: 100%;
	width: 46%;
	height: 50px;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	margin: 2%;
}
}

@media (min-width: 768px) and (max-width: 1399px) {
.search-bar .report-box h3 {
	font-size: 16px;
	line-height: 20px;
}

.search-bar .report-box p {
	font-size: 12px;
	line-height: 16px;
}
}

@media (min-width: 768px) and (max-width: 991px) {
.search-bar .report-box .split-cl {
	width: 100%;
	margin-bottom: 15px;
}

.search-bar .report-box .split-cl:nth-child(2) {
	margin: 0;
}
}

@media (max-width: 767px) {
.search-bar .btn-out .btn {
	height: 45px;
}
}


/* Search - Box */
.top-btns {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 30px;
}

.top-btns:last-child {
	margin-bottom: 0;
}

.top-btns .btn {
	min-width: 180px;
	float: left;
	margin: 0 0 20px 20px;
}

.top-btns .btn-out {
	width: auto;
	float: right;
	margin: 0 0 -20px -20px;
}

@media (max-width: 991px) {
.top-btns {
	text-align: center;
}

.top-btns .btn {
	float: none;
	margin: 10px 8px;
}

.top-btns .btn-out {
	width: auto;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin: -10px -8px;
}
}

@media (max-width: 767px) {
.top-btns {
	text-align: center;
}

.top-btns .btn {
	min-width: inherit;
	width: 29.33%;
	min-height: 45px;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	line-height: 15px;
	padding: 10px;
	margin: 2%;
}

.top-btns .btn-out {
	width: 104%;
	float: left;
	display: flex;
	flex-wrap: wrap;
	margin: -2%;
}
}


/* Event - Content */
.event-cont {
	width: 100%;
	max-width: 400px;
	float: none;
	display: inline-block;
	vertical-align: middle;
}

.event-cont .date {
	width: 12.4%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: "Nunito", sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	padding: 0 5% 0 0;
	margin: 0 -2px;
}

.event-cont .date .txt {
	width: 100%;
	display: block;
	color: #ed7955;
	text-align: center;
}

.event-cont .date .number {
	width: 100%;
	display: block;
	font-size: 24px;
	color: #2a2c36;
	line-height: 28px;
	text-align: center;
}

.event-cont .figure {
	width: 15.7%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin: 0 -2px;
}

.event-cont .figure img {
	width: 100%;
}

.event-cont .aside {
	width: 71.9%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0 0 0 5%;
	margin: 0 -2px;
}

.event-cont .aside h3,
.event-cont .aside h4,
.event-cont .aside h5 {
	font-family: "Nunito", sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	padding-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
.event-cont .date {
	width: 20%;
	font-size: 14px;
	line-height: 18px;
}

.event-cont .date .number {
	font-size: 22px;
	line-height: 26px;
}

.event-cont .figure {
	width: 20%;
}

.event-cont .aside {
	width: 60%;
}

.event-cont .aside h3,
.event-cont .aside h4,
.event-cont .aside h5 {
	font-size: 14px;
	line-height: 18px;
}
}

@media (max-width: 767px) {
.event-cont {
	max-width: 400px;
}

.event-cont .date {
	width: 40%;
	max-width: 60px;
	padding: 0;
}

.event-cont .figure {
	width: 60%;
	max-width: 61px;
}

.event-cont .figure img {
	width: 100%;
	max-width: 61px;
}

.event-cont .aside {
	width: 100%;
	padding: 15px 0 0 0;
}

.event-cont .aside h3,
.event-cont .aside h4,
.event-cont .aside h5 {
	font-family: "Nunito", sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	padding-bottom: 0;
}
}


/* Order - Table */
.order-table {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 30px;
}

.order-table:last-child {
	margin-bottom: 0;
}

.order-table table {
	width: 100%;
}

.order-table th,
.order-table td {
	font-family: "Nunito", sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	position: relative;
	padding: 20px 10px;
}

.order-table td .more-dots {
	display: inline-block;
	position: relative;
}

.order-table td .more-dots a,
.order-table td .more-dots em,
.order-table td .more-dots button {
	color: #5d63b6;
	padding: 0;
}

.order-table td .more-dots a:after,
.order-table td .more-dots em:after,
.order-table td .more-dots button:after {
	display: none;
}

.order-table td .more-dots a:hover,
.order-table td .more-dots em:hover,
.order-table td .more-dots button:hover,
.order-table td .more-dots a:focus,
.order-table td .more-dots em:focus,
.order-table td .more-dots button:focus,
.order-table td .more-dots a:active,
.order-table td .more-dots em:active,
.order-table td .more-dots button:active,
.order-table td .more-dots.show .dropdown-toggle {
	color: #ed7955;
}

.order-table td .more-dots .dropdown-menu {
	width: 120px;
	min-width: inherit;
	background: #fff3e1;
	top: 50%!important;
	transform: translateY(-50%)!important;
	left: auto!important;
	right: 100%!important;
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 0 20px 0 0;
}

.order-table td .more-dots .dropdown-menu:after {
	content: "";
	width: 0;
	height: 0;
	box-sizing: border-box;
	border: 9px solid black;
	border-color: transparent transparent #fff3e1 #fff3e1;
	transform-origin: 0 0;
	transform: rotate(-135deg);
	box-shadow: -3px 3px 5px 0 rgba(0, 0, 0, .10);
	position: absolute;
	top: 50%;
	right: -18px;
	margin: 15px 0 0 0;
}

.order-table td .more-dots .dropdown-menu em {
	width: 20px;
	font-size: 15px;
	color: inherit;
	line-height: 15px;
	text-align: center;
}

.order-table td .more-dots .dropdown-menu a {
	color: #5d63b6;
	text-decoration: none;
}

.order-table td .more-dots .dropdown-menu a:hover,
.order-table td .more-dots .dropdown-menu a:focus,
.order-table td .more-dots .dropdown-menu a:active {
	color: #ed7955;
	text-decoration: none;
}

.order-table thead th {
	height: 60px;
	color: #ffffff;
	background: #5d63b6;
	padding-top: 0;
	padding-bottom: 0;
}

.order-table thead th:after {
	font-family: "Font Awesome 5 Pro";
	content: "\f0d7";
	font-weight: 900;
	margin: 0 0 0 5px;
}

.order-table thead th.headerSortDown:after {
	content: "\f0d8";
}

.order-table thead th:first-child {
    border-radius: 12px 0 0 0;
}

.order-table thead th:last-child {
    border-radius: 0 12px 0 0;
}

.order-table thead th:last-child:after {
	display: none;
}

.order-table thead th.header {
	cursor: default;
}

@media (min-width: 768px) {
.order-table tbody tr {
	border-bottom: 1px solid #00000029;
}

.order-table th:nth-child(1),
.order-table td:nth-child(1) {
	padding-left: 3%;
}

.order-table th:last-child,
.order-table td:last-child {
	width: 6.5%;
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	padding-left: 0;
	padding-right: 0;
}
}

@media (min-width: 768px) and (max-width: 1199px) {
.order-table th:nth-child(1),
.order-table td:nth-child(1) {
	padding-left: 20px;
}
}

@media (max-width: 767px) {
.order-table tr {
	width: 100%;
	float: left;
	border: 1px solid #00000029;
	margin: 0 0 10px 0;
}

.order-table tr:last-child {
	margin-bottom: 0;
}

.order-table td {
	width: 100%;
	float: left;
	border-bottom: 1px solid #00000029;
	position: relative;
	padding: 12px 20px 12px 45%;
}

.order-table td:last-child {
	border-bottom: none;
}

.order-table td:before {
	width: 40%;
	height: 100%;
	float: left;
	content: attr(data-label);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-weight: 700;
	color: #ffffff;
	background: #5d63b6;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 20px;
}

.order-table td .more-dots .dropdown-menu {
	width: 150px;
	top: 100%!important;
	transform: translateX(-50%)!important;
	left: 50%!important;
	right: 0!important;
	margin: 21px 0 0 0;
}

.order-table td .more-dots .dropdown-menu:after {
	transform: rotate(-225deg);
	top: 0;
	right: 50%;
	margin: 0 -30px 0 30px;
}

.order-table thead {
	display: none;
}
}


/* Order - Table1 */
@media (min-width: 768px) {
.order-table.table1 th:nth-child(1),
.order-table.table1 td:nth-child(1) {
	width: 16%;
}

.order-table.table1 th:nth-child(2),
.order-table.table1 td:nth-child(2) {
	width: 29.5%;
}

.order-table.table1 th:nth-child(3),
.order-table.table1 td:nth-child(3) {
	width: 14%;
}

.order-table.table1 th:nth-child(4),
.order-table.table1 td:nth-child(4) {
	width: 18%;
}

.order-table.table1 th:nth-child(5),
.order-table.table1 td:nth-child(5) {
	width: 16%;
}
}

@media (min-width: 768px) and (max-width: 1399px) {
.order-table.table1 th:nth-child(2),
.order-table.table1 td:nth-child(2) {
	width: 25.5%;
}

.order-table.table1 th:nth-child(4),
.order-table.table1 td:nth-child(4) {
	width: 22%;
}
}

@media (min-width: 768px) and (max-width: 991px) {
.order-table.table1 th:nth-child(1),
.order-table.table1 td:nth-child(1) {
	width: 18%;
}

.order-table.table1 th:nth-child(2),
.order-table.table1 td:nth-child(2) {
	width: 23.5%;
}

.order-table.table1 th:nth-child(3),
.order-table.table1 td:nth-child(3) {
	width: 18%;
}

.order-table.table1 th:nth-child(4),
.order-table.table1 td:nth-child(4) {
	width: 20%;
}

.order-table.table1 th:nth-child(5),
.order-table.table1 td:nth-child(5) {
	width: 14%;
}
}


/* Order - Table2 */
@media (min-width: 768px) {
.order-table.table2 th:nth-child(1),
.order-table.table2 td:nth-child(1) {
	width: 19%;
}

.order-table.table2 th:nth-child(2),
.order-table.table2 td:nth-child(2) {
	width: 15%;
}

.order-table.table2 th:nth-child(3),
.order-table.table2 td:nth-child(3) {
	width: 16%;
}

.order-table.table2 th:nth-child(4),
.order-table.table2 td:nth-child(4) {
	width: 10%;
}

.order-table.table2 th:nth-child(5),
.order-table.table2 td:nth-child(5) {
	width: 22%;
}

.order-table.table2 th:nth-child(6),
.order-table.table2 td:nth-child(6) {
	width: 11.5%;
}
}

@media (min-width: 768px) and (max-width: 1399px) {
.order-table.table2 th:nth-child(3),
.order-table.table2 td:nth-child(3) {
	width: 13%;
}

.order-table.table2 th:nth-child(4),
.order-table.table2 td:nth-child(4) {
	width: 10%;
}

.order-table.table2 th:nth-child(5),
.order-table.table2 td:nth-child(5) {
	width: 25%;
}
}

@media (min-width: 768px) and (max-width: 991px) {
.order-table.table2 th:nth-child(4),
.order-table.table2 td:nth-child(4) {
	width: 13%;
}

.order-table.table2 th:nth-child(5),
.order-table.table2 td:nth-child(5) {
	width: 22%;
}
}


/* Order - Table3 */
.order-table.table3 td {
	color: #939aac;
}

@media (min-width: 768px) {
.order-table.table3 th:nth-child(1),
.order-table.table3 td:nth-child(1) {
	width: 44.5%;
}

.order-table.table3 th:nth-child(2),
.order-table.table3 td:nth-child(2) {
	width: 13.5%;
}

.order-table.table3 th:nth-child(3),
.order-table.table3 td:nth-child(3) {
	width: 12%;
}

.order-table.table3 th:nth-child(4),
.order-table.table3 td:nth-child(4) {
	width: 12%;
}

.order-table.table3 th:nth-child(5),
.order-table.table3 td:nth-child(5) {
	width: 11.5%;
}
}


/* Order - Table4 */
@media (min-width: 768px) {
.order-table.table4 th:nth-child(1),
.order-table.table4 td:nth-child(1) {
	width: 25%;
}

.order-table.table4 th:nth-child(2),
.order-table.table4 td:nth-child(2) {
	width: 21%;
}

.order-table.table4 th:nth-child(3),
.order-table.table4 td:nth-child(3) {
	width: 21%;
}

.order-table.table4 th:nth-child(4),
.order-table.table4 td:nth-child(4) {
	width: 18.5%;
}

.order-table.table4 th:nth-child(5),
.order-table.table4 td:nth-child(5) {
	width: 8%;
}
}


/* Order - Table5 */
.order-table.table5 td:nth-child(3) {
	color: #939aac;
}

@media (min-width: 768px) {
.order-table.table5 th:nth-child(1),
.order-table.table5 td:nth-child(1) {
	width: 15.5%;
}

.order-table.table5 th:nth-child(2),
.order-table.table5 td:nth-child(2) {
	width: 29%;
}

.order-table.table5 th:nth-child(3),
.order-table.table5 td:nth-child(3) {
	width: 13.5%;
}

.order-table.table5 th:nth-child(4),
.order-table.table5 td:nth-child(4) {
	width: 18.5%;
}

.order-table.table5 th:nth-child(5),
.order-table.table5 td:nth-child(5) {
	width: 17%;
}
}

@media (min-width: 768px) and (max-width: 1399px) {
.order-table.table5 th:nth-child(1),
.order-table.table5 td:nth-child(1) {
	width: 19.5%;
}

.order-table.table5 th:nth-child(2),
.order-table.table5 td:nth-child(2) {
	width: 23%;
}

.order-table.table5 th:nth-child(3),
.order-table.table5 td:nth-child(3) {
	width: 15.5%;
}

.order-table.table5 th:nth-child(4),
.order-table.table5 td:nth-child(4) {
	width: 20.5%;
}

.order-table.table5 th:nth-child(5),
.order-table.table5 td:nth-child(5) {
	width: 15%;
}
}


/* Order - Detail */
.order-detail-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 700;
	font-size: 16px;
	color: #939aac;
	line-height: 22px;
	margin-bottom: 30px;
}

.order-detail-cont:last-child {
	margin-bottom: 0;
}

.order-detail-cont strong {
	font-weight: 300;
	font-size: 14px;
}

.order-detail-cont h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 44px;
	color: #2a2c36;
	line-height: 54px;
	padding-bottom: 10px;
}

.order-detail-cont p {
	padding-bottom: 20px;
}

.order-detail-cont p:last-child {
	padding-bottom: 0;
}

.order-detail-cont .figure {
	width: 100%;
	border: 1px solid #707070;
}

.order-detail-cont .figure img {
	width: 100%;
}

.order-detail-cont .row {
	margin: 0 -15px;
}

.order-detail-cont .row > div {
	padding: 0 15px;
}

.order-detail-cont .row {
	margin-bottom: -13px;
}

.order-detail-cont .row > div {
	padding-bottom: 13px;
}


@media (min-width: 992px) {
.order-detail-cont .row > .col-md-5 {
	-ms-flex: 0 0 36.5%;
	flex: 0 0 36.5%;
	max-width: 36.5%;
}

.order-detail-cont .row > .col-md-7 {
	-ms-flex: 0 0 63.5%;
	flex: 0 0 63.5%;
	max-width: 63.5%;
}
}

@media (min-width: 992px) and (max-width: 1399px) {
.order-detail-cont h2 {
	font-size: 36px;
	line-height: 46px;
}

.order-detail-cont .row > .col-md-5 {
	-ms-flex: 0 0 40%;
	flex: 0 0 40%;
	max-width: 40%;
}

.order-detail-cont .row > .col-md-7 {
	-ms-flex: 0 0 60%;
	flex: 0 0 60%;
	max-width: 60%;
}

.order-detail-cont .row > .col-md-7 > .row > div {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
}

@media (min-width: 768px) and (max-width: 991px) {
.order-detail-cont h2 {
	font-size: 36px;
	line-height: 46px;
}

.order-detail-cont .row > .col-md-5 {
	-ms-flex: 0 0 35%;
	flex: 0 0 35%;
	max-width: 35%;
}

.order-detail-cont .row > .col-md-7 {
	-ms-flex: 0 0 65%;
	flex: 0 0 65%;
	max-width: 65%;
}

.order-detail-cont .row > .col-md-7 > .row > div {
	-ms-flex: 0 0 45%;
	flex: 0 0 45%;
	max-width: 45%;
}

.order-detail-cont .row > .col-md-7 > .row > div:nth-child(even) {
	-ms-flex: 0 0 55%;
	flex: 0 0 55%;
	max-width: 55%;
}
}

@media (max-width: 767px) {
.order-detail-cont h2 {
	font-size: 28px;
	line-height: 38px;
}

.order-detail-cont .row > .col-md-5 {
	margin-bottom: 15px;
}
}


/* Form Field - Content */
.form-field-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 30px;
}

.form-field-cont:last-child {
	margin-bottom: 0;
}

.form-field-cont .row-out {
	width: 100%;
	display: block;
	padding: 0;
	margin: 0 0 30px 0;
}

.form-field-cont .row-out:last-child {
	margin-bottom: 0;
}

.form-field-cont h2 {
	padding-bottom: 10px;
}

.form-field-cont h3 {
	padding-bottom: 20px;
}

.form-field-cont h5 {
	padding-bottom: 10px;
}

.form-field-cont p {
	font-weight: 500;
	color: #939aac;
	padding-bottom: 22px;
}

.form-field-cont h2:last-child,
.form-field-cont h3:last-child,
.form-field-cont h4:last-child,
.form-field-cont h5:last-child,
.form-field-cont p:last-child {
	padding-bottom: 0;
}

.form-field-cont .btn-230 {
	width: 100%;
	max-width: 230px;
	padding-left: 15px;
	padding-right: 15px;
}

.form-field-cont .file-select h5 {
	padding: 0 0 8px 0;
}

.form-field-cont .file-select p {
	font-weight: 500;
	font-size: 15px;
	color: #5d63b6;
	line-height: 19px;
	padding: 0;
}

.form-field-cont .selectall {
	width: auto;
	float: right;
	position: absolute;
	top: 15px;
	right: 69px;
	margin: 0;
	display: none;
}

.form-field-cont .show .selectall {
	display: block;
}

.form-field-cont .check-list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	margin: -6px;
}

.form-field-cont .check-list .custom-control {
	width: 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 6px;
	margin: 0;
}

.form-field-cont .check-list .custom-control .custom-control-label {
	font-family: "Nunito", sans-serif;	
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
}

.form-field-cont .check-list2 {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 10px 0 0 0;
	margin: -10px;
}

.form-field-cont .check-list2 .custom-control {
	min-width: 200px;
	padding: 10px;
	margin: 0;
}

.form-field-cont .check-list2 .custom-control .custom-control-label {
	padding-right: 0;
}

.form-field-cont .check-list3 {
	width: 100%;
	float: left;
}

.form-field-cont .check-list3 h5 {
	padding: 0;
}

.form-field-cont .check-list3 .custom-switch .custom-control-label {
	width: 40px;
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
}

.form-field-cont .check-list3 .custom-switch .custom-control-label::before {
	top: 0;
}

.form-field-cont .check-list3 .custom-switch .custom-control-label::after {
	top: 2px;
}

.form-field-cont .check-list3 .col1 {
	width: 55%;
	min-height: 1px;
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0 30px 0 0;
	margin: 0 -2px;
}

.form-field-cont .check-list3 .col2 {
	width: 45%;
	min-height: 1px;
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin: 0 -2px;
}

.form-field-cont .check-list3 .col2 h5,
.form-field-cont .check-list3 .col2 .custom-switch {
	width: 65px;
	float: left;
	text-align: center;
	padding: 0;
	margin: 0;
}

.form-field-cont .check-list3 .col2 h5:nth-child(even),
.form-field-cont .check-list3 .col2 .custom-switch:nth-child(even) {
	float: right;
}

.form-field-cont .check-list3 .check-row {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}

.form-field-cont .check-list3 .check-row:last-child {
	margin-bottom: 0;
}

.form-field-cont .split-cl2 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.form-field-cont .split-cl2 h3 {
	width: 60%;
	float: left;
	padding: 0;
}

.form-field-cont .split-cl2 .btn-out {
	width: 40%;
	float: left;
	text-align: right;
	padding: 0;
}

.form-field-cont .extra-field {
	width: 100%;
	margin: 10px 0 0 0;
}

.form-field-cont .btns-out {
	width: 110%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin: 0 -10% -20px 0;
}

.form-field-cont .btns-out .btn {
	min-width: 133px;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 20px 20px 0;
}

.form-field-cont .btn-add-options {
	width: 102%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	margin: -10px -1%;
}

.form-field-cont .btn-add-options .btn {
	min-width: 133px;
	vertical-align: middle;
	font-family: "Nunito", sans-serif;
	font-weight: 700;
	font-size: 13px;
	line-height: 17px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 18px 15px 15px 15px;
	margin: 10px 8px;
}

@media (min-width: 1200px) and (max-width: 1239px) {
.form-field-cont .btn-add-options .btn {
	min-width: 120px;
	font-size: 12px;
	line-height: 16px;
	padding: 18px 15px 15px 15px;
	margin: 10px 5px;
}
}

@media (min-width: 500px) and (max-width: 767px) {
.form-field-cont .btn-add-options .btn {
	min-width: 120px;
	font-size: 12px;
	line-height: 16px;
	padding: 18px 15px 15px 15px;
	margin: 10px 5px;
}
}

@media (min-width: 500px) {
.form-field-cont .check-list .custom-control {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
}

@media (max-width: 499px) {
.form-field-cont .opacity-0 {
	display: none;
}

.form-field-cont .file-select h5 {
	font-size: 12px;
	line-height: 16px;
}

.form-field-cont .file-select p {
	font-size: 13px;
	line-height: 17px;
}

.form-field-cont .selectall {
	right: 50px;
}

.form-field-cont .check-list2 .custom-control {
	min-width: 150px;
}

.form-field-cont .check-list3 .col1 {
	width: 55%;
	margin: 0 -2px;
}

.form-field-cont .check-list3 .col2 {
	width: 48%;
	margin: 0 -3% 0 -2px;
}

.form-field-cont .split-cl2 {
	display: block;
}

.form-field-cont .split-cl2 h3 {
	width: 100%;
	padding: 0 0 20px 0;
}

.form-field-cont .split-cl2 .btn-out {
	width: 100%;
	text-align: right;
	padding: 0;
}

.form-field-cont .btn-add-options {
	width: 104%;
	margin: -2% -2%;
}

.form-field-cont .btn-add-options .btn {
	min-width: 46%;
	width: 46%;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 2px;
	padding: 15px 10px 14px 10px;
	margin: 2% 1.5%;
}
}


/* Tickets - Content */
.tickets-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.tickets-cont .tab-links {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	margin-bottom: 30px;
}

.tickets-cont .tab-links:last-child {
	margin-bottom: 0;
}

.tickets-cont .tab-links ul {
	float: none;
	display: inline-block;
	vertical-align: top;
	list-style: none;
	padding: 0;
	margin: 0;
}

.tickets-cont .tab-links ul li {
	float: none;
	display: inline-block;
	vertical-align: top;
	list-style: none;
	padding: 0;
	margin: 0 74px;
}

.tickets-cont .tab-links ul li a {
	height: 40px;
	float: left;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 21px;
	color: #2a2c36;
	line-height: 25px;
	text-decoration: none;
	position: relative;
	padding: 0;
	margin: 0;
}

.tickets-cont .tab-links ul li a:after {
	content: "";
	width: 0;
	height: 5px;
	float: left;
	background: #ffd8da;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	bottom: 0;
	left: 50%;
	opacity: 0;
}

.tickets-cont .tab-links ul li a:hover:after,
.tickets-cont .tab-links ul li a:focus:after,
.tickets-cont .tab-links ul li a:active:after,
.tickets-cont .tab-links ul li a.active:after {
	width: 100%;
	left: 0;
	opacity: 1;
}

.tickets-cont .btn-out {
	text-align: center;
	margin-bottom: 30px;
}

.tickets-cont .btn-out:last-child {
	margin-bottom: 0;
}

.tickets-cont .tab-content {
	width: 100%;
	padding: 0;
	margin: 0;
}

.tickets-cont .add-list {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0;
}

.tickets-cont .add-list .article {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #ffffff;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 5px;
	padding: 30px;
	margin: 0 0 20px 0;
}

.tickets-cont .add-list .article:last-child {
	margin-bottom: 0;
}

.tickets-cont .add-list .article h3 {
	padding-bottom: 15px;
}

.tickets-cont .add-list .article h3:last-child,
.tickets-cont .add-list .article p:last-child {
	padding-bottom: 0;
}

.tickets-cont .add-list .article .price {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 21px;
	color: #2a2c36;
	line-height: 25px;
	padding: 0;
}

.tickets-cont .add-list .article .aside {
	width: 60%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	color: #939aac;
	padding: 0 30px 0 0;
	margin: 0 -4px 0 0;
}

.tickets-cont .add-list .article .price-out {
	width: 22%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	text-align: right;
	padding: 0 30px 0 0;
	margin: 0 -4px 0 0;
}

.tickets-cont .add-list .article .price-out p {
	font-size: 16px;
	color: #2a2c36;
	line-height: 20px;
	padding-bottom: 4px;
}

.tickets-cont .add-list .article .price-out p:last-child {
	padding-bottom: 0;
}

.tickets-cont .add-list .article .controls-out {
	width: 18%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	margin: 0 -4px 0 0;
}

.tickets-cont .add-list .article .controls-out .btn-icon {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	margin: -5px -3px;
}

.tickets-cont .add-list .article .controls-out a {
	width: 50px;
	height: 50px;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-size: 22px;
	color: #000000;
	line-height: 50px;
	text-align: center;
	background: #f7f259;
	border-radius: 4px;
	margin: 5px 3px;
}

.tickets-cont .add-list .article .controls-out a:hover,
.tickets-cont .add-list .article .controls-out a:focus,
.tickets-cont .add-list .article .controls-out a:active {
	background: #ede850;
}

.tickets-cont .add-list .article .controls-out a:nth-child(2) {
	color: #555bb3;
	background: #ffd8da;
}

.tickets-cont .add-list .article .controls-out a:nth-child(2):hover,
.tickets-cont .add-list .article .controls-out a:nth-child(2):focus,
.tickets-cont .add-list .article .controls-out a:nth-child(2):active {
	background: #f4bdc0;
}

@media (max-width: 1699px) {
.tickets-cont .add-list .article .aside {
	width: 60%;
}

.tickets-cont .add-list .article .price-out {
	width: 24%;
}

.tickets-cont .add-list .article .controls-out {
	width: 16%;
	text-align: right;
}
}

@media (max-width: 1499px) {
.tickets-cont .tab-links ul li {
	margin: 0 40px;
}

.tickets-cont .tab-links ul li a {
	font-size: 18px;
	line-height: 22px;
}

.tickets-cont .tab-links ul li a:after {
	height: 4px;
}

.tickets-cont .add-list .article h3 {
	font-size: 18px;
	line-height: 22px;
	padding-bottom: 15px;
}

.tickets-cont .add-list .article .price {
	font-size: 18px;
	line-height: 22px;
}

.tickets-cont .add-list .article .aside {
	width: 55%;
}

.tickets-cont .add-list .article .price-out {
	width: 45%;
	padding-right: 130px;
}

.tickets-cont .add-list .article .price-out p {
	font-size: 16px;
	line-height: 20px;
}

.tickets-cont .add-list .article .controls-out {
	width: 100px;
	text-align: right;
	margin-left: -100px;
}

.tickets-cont .add-list .article .controls-out a {
	width: 40px;
	height: 40px;
	font-size: 20px;
	line-height: 40px;
}
}

@media (max-width: 1299px) {
.tickets-cont .add-list .article .aside {
	width: 50%;
}

.tickets-cont .add-list .article .price-out {
	width: 50%;
}
}

@media (max-width: 767px) {
.tickets-cont .tab-links ul {
	margin: 0 -25px;
}

.tickets-cont .tab-links ul li {
	margin: 0 15px;
}

.tickets-cont .add-list .article {
	position: relative;
	padding: 20px 70px 20px 20px;
}

.tickets-cont .add-list .article h3 {
	padding-bottom: 10px;
}

.tickets-cont .add-list .article .aside {
	width: 100%;
	padding: 0;
	margin: 0;
}

.tickets-cont .add-list .article .price-out {
	width: 100%;
	text-align: left;
	padding: 15px 0 0 0;
}

.tickets-cont .add-list .article .controls-out {
	width: 30px;
	text-align: right;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0, -50%);
	margin: 0;
}

.tickets-cont .add-list .article .controls-out a {
	width: 30px;
	height: 30px;
	font-size: 16px;
	line-height: 30px;
}
}


/* Create - Tickets */
.create-tickets {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 30px;
}

.create-tickets:last-child {
	margin-bottom: 0;
}

.create-tickets .article-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -10px;
}

.create-tickets .article {
	width: 100%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	padding: 10px;
}

.create-tickets .article .box {
	width: 100%;
	height: 100%;
	float: left;
	font-size: 18px;
	color: #939aac;
	line-height: 26px;
	text-align: center;
	background: #ffffff;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 5px;
	padding: 30px 30px 37px 30px;
}

.create-tickets .article:last-child {
	margin-bottom: 0;
}

.create-tickets .article h2 {
	padding-bottom: 22px;
}

.create-tickets .article p {
	padding-bottom: 17px;
}

.create-tickets .article h2:last-child,
.create-tickets .article p:last-child {
	padding-bottom: 0;
}

.create-tickets .article .figure {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 30px;
}

.create-tickets .article .figure img {
	width: 100%;
}

.create-tickets .article .figure:last-child {
	margin-bottom: 0;
}

.create-tickets .article .aside {
	width: 100%;
	max-width: 390px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

@media (min-width: 768px) and (max-width: 991px) {
.create-tickets .article h2 {
	font-size: 24px;
	line-height: 28px;
}

.create-tickets .article .box {
	font-size: 16px;
	line-height: 24px;
	padding: 30px 20px 37px 20px;
}
}

@media (max-width: 767px) {
.create-tickets .article {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.create-tickets .article .box {
	height: auto;
	font-size: 16px;
	line-height: 24px;
	padding: 25px 25px 30px 25px;
}

.create-tickets .article h2 {
	font-size: 22px;
	line-height: 28px;
	padding-bottom: 15px;
}

.create-tickets .article p {
	padding-bottom: 20px;
}

.create-tickets .article .figure {
	margin-bottom: 20px;
}

.create-tickets .article .aside {
	max-width: 340px;
}
}


/* Pagination */
.pagination-out {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	padding: 0;
	margin: 30px 0 0 0;
}

.pagination-out nav {
	padding: 0;
	margin: 0;
}

.pagination-out ul {
	width: auto;
	float: none;
	display: inline-block;
	vertical-align: top;
	border: none;
	border-radius: 0;
	padding: 0;
	margin: 0 -5px;
}

.pagination-out ul li {
	float: left;
	position: relative;
	padding: 0;
	margin: 0 5px;
}

.pagination-out ul li:before {
	display: none;
}

.pagination-out ul li a {
	min-width: 30px;
	height: 30px;
	float: left;
	font-weight: 700;
	font-size: 14px;
	color: #555bb3;
	line-height: 32px;
	text-align: center;
	text-decoration: none;
	border: none;
	background: none;
	box-shadow: inset #555bb3 0 0 0 1px;
	border-radius: 4px!important;	
	padding: 0 10px;
	margin: 0;
}

.pagination-out ul li a:hover,
.pagination-out ul li a:active,
.pagination-out ul li a:focus {
	color: #555bb3;
	box-shadow: inset #555bb3 0 0 0 1px;
}

.pagination-out ul li.active a {
	color: #ffffff;
	background: #ed7955!important;
	box-shadow: inset #ed7955 0 0 0 2px;
}

.pagination-out ul li.previous a:before,
.pagination-out ul li.next a:before {
	content: "";
	width: 100%;
	float: left;
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
}

.pagination-out ul li.previous a:before {
	content: "\f053";
}

.pagination-out ul li.next a:before {
	content: "\f054";
}

.pagination-out ul li.disabled a {
	color: #c8d3d9!important;
	background: none!important;
	box-shadow: inset #c8d3d9 0 0 0 1px;
	cursor: default;
}


/*
 7.) Text - Colors
----------------------------------------*/

.max-680 {
	width: 100%;
	max-width: 680px;
	margin: 0 auto;
}

.max-1140 {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}

.max-1200 {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}


/* Text - Colors */
.white {
	color: #ffffff!important;
}

.black {
	color: #000000!important;
}

.orange {
	color: #ed7955!important;
}

.yellow {
	color: #f7f259!important;
}

.blue-b3 {
	color: #555bb3!important;
}

.blue-b6 {
	color: #5d63b6!important;
}

.blue-22 {
	color: #102622!important;
}

.sandal {
	color: #ffac3726!important;
}

.pink-lt {
	color: #d5797f26!important;
}

.pink {
	color: #ffd8da!important;
}

.gray {
	color: #939aac!important;
}

.gray-lt {
	color: #fafafa!important;
}

.gray-36 {
	color: #2a2c36!important;
}

.gray-29 {
	color: #00000029!important;
}

.gray-05 {
	color: #10020205!important;
}


/* Text - Positions */
.upper-case { 
	text-transform: uppercase;
}

.lower-case { 
	text-transform: none;
}

.underline {
	text-decoration: underline; 
}

.center-align {
	text-align: center;
	justify-content: center;
}

.vertical-align {
	align-items: center;
}

.left-align {
	text-align: left;
}

.right-align {
	text-align: right;
}


/* Padding/Margin - None */
.padding-top-5 {
	padding-top: 5px!important;
}

.padding-top-10 {
	padding-top: 10px!important;
}

.padding-top-20 {
	padding-top: 20px!important;
}

.padding-top-30 {
	padding-top: 30px!important;
}

.padding-bottom-5 {
	padding-bottom: 5px!important;
}

.padding-bottom-10 {
	padding-bottom: 10px!important;
}

.padding-bottom-20 {
	padding-bottom: 20px!important;
}

.padding-bottom-30 {
	padding-bottom: 30px!important;
}

.margin-top-7 {
	margin-top: 5px!important;
}

.margin-top-10 {
	margin-top: 10px!important;
}

.margin-top-20 {
	margin-top: 20px!important;
}

.margin-top-30 {
	margin-top: 30px!important;
}

.margin-bottom-7 {
	margin-bottom: 5px!important;
}

.margin-bottom-10 {
	margin-bottom: 10px!important;
}

.margin-bottom-20 {
	margin-bottom: 20px!important;
}

.margin-bottom-30 {
	margin-bottom: 30px!important;
}

.padding-top-none {
	padding-top: 0!important;
}

.padding-bottom-none {
	padding-bottom: 0!important;
}

.margin-top-none {
	margin-top: 0!important;
}

.margin-bottom-none {
	margin-bottom: 0!important;
}


