body {
	font-family: 'Poppins', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-feature-settings: "kern" 1;
	-moz-font-feature-settings: "kern" 1;
}

h1, h2, h3, h4, h5, h6, input {
	font-family: 'Poppins', sans-serif;
}

a, a:hover
{
	color: var(--primary);
}

a:not(.btn):not(.list-group-item) {
	text-decoration: underline;
}

a.external-link::after {
	content: "\e732";
	font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-left: 5px;
    text-decoration: none !important;
    display: inline-block;
}

input {
	accent-color: var(--pt-primary);
}

input[type="text"]:not(.form-control),
select:not(.form-control),
textarea:not(.form-control) {
	color: black;
}

input:not(.form-control)::placeholder,
select:not(.form-control)::placeholder,
textarea:not(.form-control)::placeholder {
	color: #aaa;
}

hr {
	border-color: var(--pt-main-bg);
}

hr.double {
	margin: 50px 0;
}

.page-container {
	padding: 100px 120px 120px 120px;
	height: auto;
}

.page-container .title h2 {
	font-size: 35px;
	font-weight: 500;
	margin: 0;
}

.page-container .breadcrumb {
	margin: 0 0 40px -5px;
	padding-top: 0;
}

/*
body:not(.admin2) .row
{
	margin-left: 0px;
	margin-right: 0px;
}
*/

@media all and (max-width: 768px) {
	.page-container .title h2 {
		font-size: 20px;
		margin-bottom: 15px;
	}
}

/* Blank page */
body.blank-page header {
	display: none;
}

body.blank-page .page-container {
	padding: 0;
}

@media all and (max-width: 768px) {
	.page-container .breadcrumb {
		margin-bottom: 15px;
	}
}

/* Header */
header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--pt-header-height);
	z-index: 10;
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	border-bottom: 1px solid var(--pt-border-color);
	background-color: var(--pt-main-bg);
}

header section {
	display: flex;
	align-items: center;
	margin: 0;
}

header section a
{
	color: var(--pt-text-color);
	text-decoration: none !important;
}

header section.logo
{
	display: flex;
	padding-left: 25px;
	width: 250px;
}

header section.logo button.btn-toggle-aside-menu {
	display: none;
	font-size: 17px;
	background: transparent;
	border: none;
	padding: 7px 10px;
	margin-right: 15px;
}

header section.logo button.btn-toggle-aside-menu.admin {
	display: flex;
}

header section.logo img
{
	max-width: 110px;
    height: 40px;
}

header section.logo .logo-link
{
	display: inline-block;
	margin-right: 10px;
}

header section.search form {
	position: relative;
	width: 210px;
	margin-right: 20px;
	max-width: 100%;
}

header section.search form input {
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left: 40px;
	height: auto;
}

header section.search form i {
	position: absolute;
	top: 11px;
    left: 15px;
}

header section.user {
	display: flex;
	justify-content: end;
	width: 250px;
	padding-right: 25px;
}

header section.user a.dropdown-toggle {
	color: var(--pt-headings-color);
}

header section.menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 0 30px;
}

header section.menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: row;
}

header section.menu ul li {
	display: flex;
	align-items: center;
	margin: 0 20px;
}

header section.menu ul li:first-child {
	margin-left: 0;
}

header section.menu ul li:last-child {
	margin-right: 0;
}

header section.menu ul li a {
	color: var(--pt-headings-color);
	height: 100%;
    display: inline-flex;
    align-items: center;
}

header section.menu ul li.active {
	border-bottom: 2px solid var(--primary);
	font-weight: bold;
}

header ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
header ::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
header :-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
header :-moz-placeholder { /* Firefox 18- */
  color: #fff;
}

@media all and (max-width: 768px) {
	
	header section.logo button.btn-toggle-aside-menu {
		display: inline-block;
	}
	
	header section.logo button {
		display: block;
	}
	
	header section.logo {
		padding-left: 15px;
	}
	
	header section.logo .logo-link {
		display: none;
	}
	
	header::before {
		display: none;	
	}
	
	header section.menu {
		display: none;
	}
}

/* User menu */
#user-menu
{
	visibility: hidden;
	position: fixed;
	top: 65px;
	right: 31px;
	min-width: 230px;
	font-size: 14px;
	background-color: #fff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
    opacity: 0;
    transition: opacity .2s;
    z-index: 110;
    color: #aaabae;
}

#user-menu.visible
{
	visibility: visible;
	opacity: 1;
}

#user-menu .peak
{
	content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(45deg);
    position: absolute;
    top: -5px;
    right: 17px;
}

#user-menu .content
{
	padding: 25px 30px;
}

#user-menu .content h3
{
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 4px 0;
}

#user-menu .content h4
{
	font-size: 12px;
	margin: 0 0 27px 0;
}

#user-menu .content ul
{
	list-style: none;
	margin: 0;
	padding: 0;
}

#user-menu .content li
{
	margin: 0 0 12px 0;
}

#user-menu .content li:last-child
{
	margin-bottom: 0;
}

#user-menu .content li i
{
	padding-right: 9px;
}

#user-menu .content a
{
	color: #aaabae;
}

/* Bootstrap label */
.label
{
	color: #fff;
}

/* Form control */
.form-control
{
	padding: 10px 15px;
	height: 47px;
	font-weight: 500;
}

/* Buttons */
.btn {
	padding: 13px 20px;
	height: 47px;
	font-weight: 500;
}

.btn.btn-sm {
	padding: 7px 10px;
	font-weight: 500;
	height: unset;
}

.btn:has(.text) {
	padding-top:11px;
	padding-bottom: 8px;
}

.btn.btn-default .text {
	display: flex;
	flex-flow: column;
	line-height: 13px;
}

.btn.btn-default .text .subtext {
	font-size: 8px;
	color: #A1A5A8;
	text-align: left;
}

.btn:has(i) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn:not(.btn-icon) i {
	font-size: 16px;
	margin-right: 7px;
}

.btn.btn-sm i {
	font-size: 14px;
	margin-right: 3px;
}

.btn.btn-default {
    background: var(--pt-secondary) !important;
    color: var(--pt-headings-color) !important;
	border-color: var(--pt-secondary) !important;
}

.dropdown-wrapper {
	display: flex;
	flex-flow: row;
	position: relative;
	grid-gap: 3px;
}

.dropdown-wrapper .btn:first-child {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	min-width: 240px;
}

.dropdown-wrapper .btn + .btn.dropdown-toggle {
	position: relative;
	left: -2px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-left: 10px;
	padding-right: 10px;
	width: auto;
}

.dropdown-wrapper .btn {
	padding-top: 18px;
	padding-bottom: 18px;
	height: unset;
}

@media all and (max-width: 480px) {
	.btn
	{
		display: block;
		width: 100%;
		margin-bottom: 5px;
	}
	
	.btn-group .btn
	{
		width: inherit;
	}
}

/* Menu */
.sidebar-nav {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 300px;
	max-height: 90%;
	z-index: 110;
	opacity: 0;
	transition: opacity .2s;
	font-size: 14px;
}

.sidebar-nav.open {
	visibility: visible;
	opacity: 1;
}

.sidebar-nav > ul {
	background: #fff;
	box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	border-radius: var(--pt-border-radius)
}

.sidebar-nav .peak {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #fff;
	transform: rotate(45deg);
	position: relative;
	top: 11px;
	left: 17px;
}

.sidebar-nav ul {
	list-style: none;
	margin: 0;
	padding: 0px;
}

.sidebar-nav ul li {
	margin: 0;
	padding: 0;
}

.sidebar-nav ul li a {
	display: block;
	padding: 7px 17px 7px 20px;
	color: var(--pt-text-color);
	text-decoration: none !important;
}

.sidebar-nav ul > li:first-child a {
	padding-top: 15px;
}

.sidebar-nav ul > li:last-child a {
	padding-bottom: 15px;
}

.sidebar-nav ul li a i {
	margin-right: 5px;	
}

.sidebar-nav ul ul {
	display: none;
}

.sidebar-nav ul ul li a {
	padding-left: 40px;
}

.sidebar-nav ul li a[href="#"]:after {
	content: "\f107";
	font-family: 'FontAwesome';
	font-size: 14px;
	float: right;
}

.sidebar-nav ul li a.open[href="#"]:after {
	content: "\f106";
}

.sidebar-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 109;
}

/* Forms */
.centered-form-wrapper
{
	width: 650px;
	max-width: 100%;
	margin: 0 auto;
}

.form-group,
.form-group-switch,
.form-group-checkbox,
.form-group-radio
{
	width: 100%;
	margin-bottom: 3rem;
}

.form-group-actions{
	margin-top: 15px;
	text-align: center;
}

form .form-group-special
{
	position: absolute;
	top: -1000px;
	left: -1000px;
	z-index: -1;
}

.form-control::placeholder {
	color: #ccc;
	font-style: italic;
}

input.form-control:focus,
textarea.form-control:focus {
	background-color: transparent;
}

select.form-control {
	background-color: transparent;
	border: 1px solid #d0d0d0;
}

.form-control-small-action {
	display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: var(--pt-font-size-sm);
}

label,
.form-group label:not(.error) {
	font-family: inherit !important;
}

.has-error .form-control {
	border-color: var(--danger);
}

.input-actions {
	font-size: 12px;
	display: flex;
    justify-content: space-between;
    padding-top: 5px;
}

.checkbox,
.radio {
    display: flex;
    flex-flow: row;
}

.checkbox input,
.radio input {
    position: relative !important;
    top: 2px;
    margin: 0 !important;
	width: 16px;
	height: 16px;
	margin-bottom: -3px;
}

.checkbox label,
.radio label{
    font-weight: inherit;
    padding-left: 5px;
}

/* Switch Checkbox */
.checkbox.switch-style {
	margin: 0 0 15px 0;
    background: #fff;
    border-radius: var(--pt-border-radius);
    padding: 14px 20px;
}

.checkbox.switch-style input[type=checkbox] {
    position: absolute;
    left: -9999px;
    visibility: hidden;
	margin-left: -20px !important;
}

.checkbox.switch-style label {
	font-size: var(--pt-font-size);
	font-weight: 500 !important;
	color: var(--pt-headings-color);
    padding-left: 55px;
    padding-top: 1px !important;
    line-height: normal !important;
	user-select: none;
}
 
.checkbox.switch-style input[type=checkbox]:disabled + label:before {
    opacity: .5;
    border-style: dotted;
    border-color: #FFF;
}

.checkbox.switch-style input[type=checkbox]:disabled + label:after {
    opacity: .5;
}
 
.checkbox.switch-style input[type=checkbox]:disabled:checked + label:before {
    background: #B0BEC5;
    border-color: #FFF;
    border-style: dotted;
}

.checkbox.switch-style input[type=checkbox]:disabled:checked + label:after {
	opacity: 1;
}
 
.checkbox.switch-style input[type=checkbox] + label:before, 
.checkbox.switch-style input[type=checkbox] + label:after {
    content: '';
    position: absolute;
    top: 11px;
    left: 20px;
    margin: 4px;
    width: 37px;
    height: 20px;
    z-index: 0;
    border-radius: 15px;
    transition: all .3s ease;
}
 
.checkbox.switch-style input[type=checkbox]:not(:checked) + label:before {
    background:  var(--pt-secondary);
    border: 1px solid var(--pt-secondary);
}

.checkbox.switch-style input[type=checkbox]:not(checked) + label:after {
    position: absolute;
    top: 14px;
    left: 23px;
    width: 14px;
    height: 14px;
    background: #FFF;
    border:1px solid #fff;
}

.checkbox.switch-style input[type=checkbox]:checked + label:before {
    background: var(--pt-primary);
    border: 1px solid var(--pt-primary);
}
 
.checkbox.switch-style input[type=checkbox]:checked + label:after {
    left: 40px;
    background: #fff;
}

/* Text primary */
.text-primary {
	color: #4b89dc !important;
}

/* Super titles */
h1.large {
	font-weight: 200;
	font-size: 63px;
	letter-spacing: -3px;
}

p.large {
	font-size: 19px;
	margin: 0 0 30px 0;
}

/* Page with centered content */
.page-center-wrapper {
	display: table;
	max-width: 90%;
	width: 770px;
	height: 100vh;
	box-sizing: border-box;
	margin: 0 auto;
	text-align: center;
	padding: 0 0 0 0;
}

.page-center-content {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 0;
}

.page-center-content .form-group,
.page-center-content label {
	text-align: left;
}

.checkout-cancel {
	position: fixed;
	top: 17px;
	right: 17px;
}

.checkout-cancel a {
	display: inline-block;
	width: 14px;
	height: 14px;
	color: #26262c;
	background: url(/assets/common/img/close-icon.png) no-repeat center;
}

.page-center-content .go-back {
	opacity: 0;
	position: static;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	margin-top: 55px;
}

.page-center-content .go-back.fixed {
	position: fixed;
}

.page-center-content .go-back.visible {
	opacity: 1;
}

.page-center-content .go-back i {
	font-size: 32px;
	line-height: 38px;
	border-radius: 50%;
	display: inline-block;
	width: 42px;
	height: 42px;
	color: #a4a4a7;
	border: 1px solid #a4a4a7;
}

.page-center-content .go-back i:before {
	position: relative;
    left: -1px;
    top: 0px;
}

.page-center-content .go-back span {
	display: block;
	font-size: 14px;
	padding: 14px 0 16px;
	color: #a4a4a7;
}

.page-center-content .btn {
	height: 50px;
	line-height: 15px;
	min-width: 143px;
	font-size: 15px;
	font-weight: 600;
	padding: 17px 20px;
	text-align: center;
}

@media (max-width: 455px) {
	.page-center-wrapper {
		width: 100%;
	}
	
	.page-center-wrapper h1 {
		font-size: 45px;
	}
}

/* Responsive */
@media (max-width: 1366px) {
	.page-container {
		padding: 30px 15px 15px 15px;
	}
	
	.row {
		margin: 0;
	}
}

/* Cols */
.column-1-center {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 10px;
	box-sizing: border-box;
}

.column-2-center {
	width: 50%;
	min-width: 530px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 10px;
	box-sizing: border-box;
}

.column-2:first-child {
	padding-left: 0;
}

.column-2:last-child {
	padding-right: 0;
}

.column-1 {
	width: 100%;
	padding: 0;
	box-sizing: border-box;
}

.column-2 {
	float: left;
	width: 50%;
	padding: 0 10px;
	box-sizing: border-box;
}

@media (max-width: 455px) {
	.column-2-center {
		width: 100%;
		padding: 0;
		min-width: unset;
	}
	
	.column-2 {
		width: 100%;
		padding: 0;
	}
}

/* Color selector */
.color-selector {
	display: inline-block;
	width: 36px;
	height: 36px;
	margin: 3px;
	background: #fff;
	color: #fff;
	border-radius: 50%;
	cursor: pointer;
	border: 3px solid var(--pt-secondary);
}

.color-selector i {
	display: none;
}

.color-selector.selected {
	outline: 3px solid var(--pt-primary);
}

.color-selector.selected i {
	visibility: visible;
}

/* Pricing table */
.pricing-table-selector {
	margin: 45px 0;
	display: flex;
	flex-flow: row;
	justify-content: center;
}

.pricing-table-selector .btn {
	width: 120px;
}

.pricing-table-selector span {
	font-size: 10px;
	color: var(--pt-headings-color);
	font-style: italic;
	position: absolute;
	top: -22px;
}

.pricing-table {
	opacity: 0;
	transition: all .3s;
}

.pricing-table ul ul {
	list-style: circle;
}

.pricing-table ul ul li {
	padding: 0;
	margin: 0;
	width: auto;
	height: auto;
	border: none;
	display: block;
}

.pricing-table.shown {
	opacity: 1;	
}

.pricing-table ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-table ul li {
	position: relative;
	display: inline-table;
	width: 230px;
	color: #626262;
	font-size: 14px;
	padding: 30px 15px 15px 15px;
	margin: 0 15px 0 15px;
	border: 1px solid #ededed;
	position: relative;
    top: -15px;
}

.pricing-table ul li.popular ul li {
	color: #fff;
}

.pricing-table ul li.popular .popular {
	visibility: visible;	
}

.pricing-table ul li:first-child {
	margin-left: 0;
}

.pricing-table ul li:last-child {
	margin-right: 0;
}

.pricing-table ul li .title {
	font-size: 30px;
	font-weight: normal;
	margin-bottom: 8px;
}

.pricing-table ul li .subtitle {
	font-size: 11px;
	font-weight: normal;
	line-height: 12px;
	margin-bottom: 36px;
}

.pricing-table ul li .price-wrapper {
	margin-bottom: 11px;
}

.pricing-table ul li .price-wrapper .price {
	font-size: 40px;
	font-weight: normal;
	margin-right: -8px;
}

.pricing-table ul li .price-wrapper table {
	border: none;
	text-align: left;
	display: inline-block;
	font-weight: normal;
}

.pricing-table ul li .price-wrapper table .sep {
	font-size: 32px;
}

.pricing-table ul li .price-wrapper table .currency-period {
	font-size: 12px;
	line-height: 12px;
}

.pricing-table ul li .price-wrapper .currency-wrapper .period {
	display: table-cell;
	font-size: 12px;
}

.pricing-table ul li .subprice {
	font-size: 11px;
	margin-bottom: 20px;
}

.pricing-table ul li .btn {
	min-width: 150px;
}

.pricing-table ul li .info {
	margin-top: 30px;
}

.pricing-table ul li .info p,
.pricing-table ul li .info ul {
	font-size: 13px;
    font-weight: 300;
}

@media all and (max-width: 455px) {
	.pricing-table ul li {
		margin: 7.5px 0;
		width: 100%;
	}
}

/* Domain list */
.domains-section {
	width: 100%;
	max-width: 475px;
	margin: 0 auto;
}

.domains-section.domains-section-md {
	max-width: 490px;
}

.domains-section li {
	border-left: none;
	border-right: none;
	border-radius: 0;
	padding: 24px 5px;
}

.domains-section .domain {
	font-weight: bold;
	padding-left: 15px;
}

.domains-section .domain label {
	font-size: var(--pt-font-size-lg);
	font-weight: bold;
	margin: 0px;
} 

.domains-section .domain label.pointer {
	cursor: pointer;
	text-decoration: underline;
	color: var(--pt-headings-color);
}

.domains-section .price {
	float: right;
	padding-right: 15px;
}

.domains-section .price .old-price {
	position: relative;
}

.domains-section .price .old-price:before {
	content: '';
	display: inline-block;
	background: #eb5844;
	width: 100%;
	height: 2px;
	position: absolute;
	top: 11px;
	left: 0;
	border-radius: 5px;
	transform: rotate(-11deg);
}

.domains-section .domains-options {
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}

.domains-section .domain-option {
	width: 100%;
	max-width: 230px;
	text-align: center;
	border-left: 1px solid #ededed;
	border-right: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
}

.domains-section .domain-option hr {
	border-top: 5px solid var(--pt-primary);
	margin: 0 -1px 0 -1px;
}

.domains-section .domain-option:first-child {
	margin-right: 15px;
}

.domains-section .domain-option:last-child {
	margin-left: 15px;
}

.domains-section .domain-option .domain-option-content {
	height: 125px;
	margin: 40px 20px 0 20px;
}

.domains-section .domain-option h3 {
	font-size: 30px;
	color: #626262;
}

.domains-section .domain-option p {
	font-size: 12px;
	color: #626262;
}

.domains-section .domain-option button {
	margin-bottom: 20px;
}

@media all and (max-width: 575px) {
	.domains-section .domains-options {
		display: block;	
	}
	
	.domains-section .domain-option {
		max-width: 100%;
		margin: 0 0 15px 0 !important;
	}
	
	.domains-section .domain-option .domain-option-content {
		height: auto;	
	}
	
	.domains-section .domain-option button {
		margin-left: 15px;
		margin-right: 15px;
		max-width: calc(100% - 30px);
	}
}

/* Services */
.services-section .list-group-item .service b {
	background-color: #e54c2d;
	color: #fff;
	font-size: 10px;
	padding: 2px 4px;
}

/* Projects grid */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px;
}

.projects-grid .item {
	position: relative;
}

.projects-grid .item .image-container {
	position: relative;
}

.projects-grid .item .image-container .screenshot {
	position: relative;
	border-radius: var(--pt-border-radius-lg);
	background: var(--pt-secondary);
	overflow: hidden;
}

.projects-grid .item .image-container .screenshot .image {
	position: relative;
	z-index: 2;
	background-size: cover;
}

.projects-grid .item .image-container .screenshot .text {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.projects-grid .item .image-container .hover {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .8);
	z-index: 5;
	opacity: 0;
	transition: all .2s;
	border-radius: var(--pt-border-radius-lg);
}

.projects-grid .item:hover .image-container .hover {
	visibility: visible;
	opacity: 1;
}

.projects-grid .item .image-container .hover .btn-edit {
	position: absolute;
	top: 40%;
	left: 50%;
	width: 80%;
	transform: translateX(-50%);
}

.projects-grid .item .image-container .hover .btn-remove {
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	color: var(--pt-text-color);
	background: var(--pt-main-bg);
	border-radius: 50%;
	text-align: center;
	font-size: 17px;
	line-height: 40px;
	text-decoration: none;
}

.projects-grid .item .label {
	position: absolute;
	left: 15px;
	top: 15px;
	font-size: var(--pt-font-size-sm);
	font-weight: 500;
	z-index: 2;
	text-transform: uppercase;
	color: #fff;
	padding: 4px 9px;
}

.projects-grid .item .details-info {
	margin-top: 15px;
}

.projects-grid .item .details-info a {
	color: var(--pt-text-color);
	text-decoration: none;
}

.projects-grid .item .details-info .title {
	display: block;
	font-size: 18px;
}

.projects-grid .item .details-info .domain {
	font-size: 12px;
	font-weight: 300;
}

@media all and (max-width: 768px) {
	.projects-grid {
		grid-template-columns: auto;	
	}
}


iframe.preview {
	position: fixed;
	top: 94px;
	left: 0;
	width: 100%;
	height: calc(100vh - 94px);
	z-index: 999;
	border: 0;
	background: #fff;
	visibility: hidden;
	opacity: 0;
	transition: all .2s;
}

iframe.preview.open {
	visibility: visible;
	opacity: 1;
}

/* Label error */
label.error
{
	position: relative;
	top: -27px;
	margin: 0;
	font-size: var(--pt-font-size-sm);
	font-weight: normal;
	color: var(--danger);
}

.form-group-checkbox label.error,
.form-group-radio label.error {
	top: -10px;	
}

@media all and (max-width: 1024px) {
	.projects-grid ul li {
		width: 33.33333333333%;
	}
}

@media all and (max-width: 455px) {
	.projects-filter ul li a {
		padding: 2px 8px;
	}
	
	.projects-grid ul li {
		width: 100%;
	}
}

/* ... */
.ajax-upload-image img {
	width: 100%;
	padding: 30px;
}

.upload-logo-wrapper {
	width: 300px;
	margin: 0 auto;
}

.upload-logo-wrapper .btn {
	width: 140px;	
}

.upload-logo-wrapper .btn + .btn {
	margin-left: 15px;
}

.upload-logo-wrapper .ajax-upload-image {
	background-color: #fff;
	border-radius: var(--pt-border-radius);
	margin-bottom: 20px;
}

/* Login page */
.login-bottom {
	width: 770px;
	height: 50px;
}

@media (max-width: 455px) {
	
	.pull-bottom.login-bottom {
		width: 100%;
		text-align: center;
		position: static !important;
		margin-top: 25px;
	}
}

/* Tables */
.table {
    margin-bottom: 0;
    margin-top: 5px;
}
.table thead tr th {
    font-weight: bold;
    padding-top: 14px;
    padding-bottom: 14px;
    vertical-align: middle;
    border-bottom: 1px solid var(--pt-secondary);
    border-top: none;
    padding: 20px;
}

.table thead tr th[class*='sorting_']:not([class='sorting_disabled']) {
    color: #2c2c2c;
}
.table thead tr th .btn {
    margin-top: -20px;
    margin-bottom: -20px;
}
.table tbody tr td {
    border-bottom: 1px solid rgba(230, 230, 230, 0.7);
    border-top: 0px;
    padding: 20px;
    font-size: 13.5px;
    vertical-align: middle;
}
.table tbody tr td .btn-tag {
    background: rgba(44, 44, 44, 0.07);
    display: inline-block;
    margin: 5px;
    border-radius: 4px;
    padding: 5px;
    color: #62605a!important;
}
.table tbody tr td .btn-tag:hover {
    background: rgba(44, 44, 44, 0.15);
}
.table tbody tr td[class*='sorting_'] {
    color: #000;
}
.table tbody tr td .checkbox label::after {
    left: 0.5px;
}
.table tbody tr.selected td {
    background: #fef6dd;
}
/*
.table.table-hover tbody tr:hover td {
    background: #daeffd!important;
}
.table.table-hover tbody tr.selected:hover td {
    background: #fef6dd!important;
}
*/
.table.table-striped tbody tr td {
    background: #fafafa!important;
}
.table.table-striped tbody tr:nth-child(2n+1) td {
    background: #fff!important;
}
.table.table-borderless tbody tr td {
    border-top: 0;
}
.table.table-condensed {
    table-layout: fixed;
}
.table.table-condensed thead tr th {
    padding-left: 20px;
    padding-right: 20px;
}
.table.table-condensed tbody tr td {
    padding-top: 12px;
    padding-bottom: 12px;
}
.table.table-condensed thead tr th,
.table.table-condensed tbody tr td,
.table.table-condensed tbody tr td *:not(.dropdown-default) {
    white-space: nowrap;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
}
.table.table-condensed thead tr th.reset-overflow *,
.table.table-condensed tbody tr td.reset-overflow *,
.table.table-condensed tbody tr td *:not(.dropdown-default).reset-overflow * {
    overflow: initial!important;
}
.table.table-condensed.table-detailed>tbody>tr.shown>td {
    background: #fef6dd;
}
.table.table-condensed.table-detailed>tbody>tr.shown>td:first-child:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.table.table-condensed.table-detailed>tbody>tr.shown+tr>td {
    background: rgba(250, 250, 250, 0.4);
    padding: 0px 40px;
}
.table.table-condensed.table-detailed>tbody>tr.shown+tr>td .table-inline {
    margin-top: 13px;
    margin-bottom: 13px;
    background: transparent;
}
.table.table-condensed.table-detailed>tbody>tr.shown+tr>td .table-inline tr,
.table.table-condensed.table-detailed>tbody>tr.shown+tr>td .table-inline td {
    background: transparent;
    font-weight: 600;
}
.table.table-condensed.table-detailed>tbody>tr.row-details>td:first-child:before {
    content: '';
    display: none;
}
.table.table-condensed.table-detailed>tbody>tr>td:hover {
    cursor: pointer;
}
.table.table-condensed.table-detailed>tbody>tr>td:first-child:before {
    content: "\f054";
    display: inline-block;
    font-size: 8px;
    top: -1px;
    position: relative;
    margin-right: 8px;
    font-family: 'FontAwesome';
    -webkit-transition: all 0.12s linear;
    transition: all 0.12s linear;
}
.table.table-condensed.table-detailed .table-inline td {
    border: none;
    text-align: left;
}
.table.table-borderless>tbody>tr>td {
    border-bottom: 0px;
}
.fht-table {
    margin-bottom: 0!important;
}
.table-lang th.language img {
	width: 18px;
}
table.dataTable tbody tr {
	background-color: transparent;
}
.table.dataTable.no-footer {
    border: none;
}
.dataTables_scroll:hover .dataTables_scrollBody:before {
    content: "";
    top: 0;
    height: 0;
}
.dataTables_scrollBody {
    overflow-y: auto;
    border: none!important;
}
.dataTables_scrollBody:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    bottom: 0;
    background: transparent;
}
.dataTables_wrapper
{
	width: 100%;
}
.dataTables_wrapper .dataTables_paginate {
    float: right;
}
.dataTables_wrapper .dataTables_paginate ul>li.disabled a {
    opacity: .5;
}
.dataTables_wrapper .dataTables_paginate ul>li>a {
    padding: 5px 10px;
    color: #626262;
    opacity: .35;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.dataTables_wrapper .dataTables_paginate ul>li>a:hover {
    opacity: .65;
}
.dataTables_wrapper .dataTables_paginate ul>li.next>a,
.dataTables_wrapper .dataTables_paginate ul>li.prev>a {
    opacity: 1;
}
.dataTables_wrapper .dataTables_paginate ul>li.disabled a {
    opacity: .35;
}
.dataTables_wrapper .dataTables_paginate ul>li.disabled a:hover {
    opacity: .35;
}
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    margin-top: 25px!important;
}
.dataTables_paginate.paging_bootstrap.pagination {
    padding-top: 0;
    padding-right: 20px;
}
.dataTables_wrapper .dataTables_info {
    clear: none;
    font-size: 12px;
    padding: 0 33px;
    color: #626262;
}
.dataTables_wrapper .dataTables_paginate ul>li {
    display: inline-block;
    padding-left: 0;
    font-size: 11px;
}
.dataTables_scrollHeadInner {
    padding-right: 0!important;
}
.export-options-container {
    position: relative;
}
.dataTables_wrapper .dataTables_paginate ul>li.active>a {
    font-weight: bold;
    color: #626262;
    opacity: 1;
}
.export-options-container a {
    color: inherit;
    opacity: 1;
}
.exportOptions .DTTT.btn-group a {
    display: block!important;
}
table.dataTable thead .sorting_asc:after {
    background-image: url("../img/icons/sort_asc.png");
}
table.dataTable thead .sorting_desc:after {
    background-image: url("../img/icons/sort_desc.png");
}
table.dataTable thead .sorting:after {
    background-image: url("../img/icons/sort_both.png");
}
table.dataTable thead .sorting_asc_disabled:after {
    background-image: url("../img/icons/sort_asc_disabled.png");
}
table.dataTable thead .sorting_desc_disabled:after {
    background-image: url(".../img/icons/sort_desc_disabled.png");
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
    bottom: 12px;
    content: "";
    width: 19px;
    height: 19px;
    background-position: center center;
    opacity: 1;
}
table.dataTable.table-condensed .sorting:after,
table.dataTable.table-condensed .sorting_asc:after,
table.dataTable.table-condensed .sorting_desc:after {
    top: 12px;
}

.table-header-fixed
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	font-size: 12px;
	background: #eee;
	box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
}

.table-header-fixed > div
{
	text-align: center;
	display: inline-block;
	padding: 5px;
}

.table tr td .btn {
	background: #fff;
}

@media (max-width: 991px) {
    .dataTables_wrapper .dataTables_info {
        float: left;
    }
    .dataTables_paginate.paging_bootstrap.pagination {
        float: right;
    }
}
@media (max-width: 767px) {
    .table-responsive {
        border: 1px solid #ddd;
    }
}
@media (max-width: 480px) {
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        float: none;
        text-align: left;
        clear: both;
        display: block;
    }
}

.table tbody tr td.actions {
	white-space: nowrap;
}

.table tbody tr td.actions .btn {
	background: #fff;
	padding: 9px 19px;
}

.table>tbody>tr>td,
.table>tbody>tr>th {
    line-height: 1.42857143;
}
.table>tfoot>tr>td,
.table>tfoot>tr>th {
    line-height: 1.42857143;
	border-top: inherit;
}
.table>thead>tr>td,
.table>thead>tr>th {
    line-height: 1.42857143;
}

/* Empty message */
.empty-message {
	text-align: center;
	margin: 70px 0;
}

/* Legal pages */
.legal, .legal p {
	font-weight: 300;
}

.legal h3 {
	margin: 25px 0 15px 0;
	font-weight: bold;
}

.legal h4 {
	margin: 20px 0 0 0;
	font-weight: bold;
}

.legal ul {
	list-style: none;
}

/* Breadcrumbs */
.breadcrumb {
    font-family: 'Poppins';
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    box-shadow: none;
    background-color: transparent;
    padding: 15px 0;
    margin: 0;
    border: none;
    text-transform: uppercase;
    display: block;
}
.breadcrumb.breadcrumb-alt {
    padding: 8px 0;
    text-transform: none;
}
.breadcrumb.breadcrumb-alt a {
    letter-spacing: normal;
    color: #000;
    font-size: 12px!important;
}
.breadcrumb.breadcrumb-alt>.breadcrumb-item,
.breadcrumb.breadcrumb-alt>.breadcrumb-item.active {
    letter-spacing: normal;
    opacity: .46;
    color: #000;
    font-size: 12px!important;
}
.breadcrumb a {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 10.5px!important;
    letter-spacing: 0.06em;
    font-weight: 500;
    color: #7b7d82;
}
.breadcrumb .breadcrumb-item {
    float: left;
    padding-left: 0px;
}
.breadcrumb>.breadcrumb-item+.breadcrumb-item:before {
    padding: 0 5px;
    color: #515050;
    font-family: FontAwesome;
    content: "\f105";
    font-size: 12px;
    font-weight: bold;
}
.breadcrumb>.breadcrumb-item.active {
    font-weight: 500;
    color: #0090d9;
    margin-left: 5px;
    margin-right: 5px;
    letter-spacing: 0.06em;
}
.breadcrumb>.breadcrumb-item.active a {
    color: var(--pt-text-color);
    text-decoration: underline;
}
.breadcrumb>.breadcrumb-item.active:before {
    padding-right: 10px;
}

/* Sections */
section
{
	padding: 30px 0;
    border-top: 2px solid var(--pt-main-bg);
}

section:nth-of-type(1) {
	border-top: none;
}

section .section-title, .section-title-wo-section
{
	font-size: var(--pt-font-size-lg);
    color: var(--pt-headings-color);
    margin: 0 0 8px 0;
}

section .section-title i
{
	display: none;
}

section > .form-group:last-child {
	margin-bottom: 0;
}

/* Project helpers */
#builder-modal-helper [data-parent]
{
	padding-left: 50px;
}

/* Helpers */
.hidden {
	display: none;
}

.full-width {
	width: 100%;
}

.img-bordered {
	border: 1px solid var(--pt-main-bg);
}

/* Form multilanguage > label - flags */
form.has-multilanguage .form-group img.flag {
	padding-left: 6px;
    position: relative;
    top: -1px;
}

/* jquery autocomplete */
ul.ui-autocomplete {
	list-style: none;
	background-color: #FFF;
	padding: 0;
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.07);
	z-index: 999;
}

.ui-autocomplete .ui-menu-item {
	padding: 5px 10px;
	background-color: #fff;
	border-radius: 3px;
	margin: 6px;
	cursor: pointer;
}

.ui-autocomplete .ui-menu-item.ui-state-focus {
	background-color: #f0f0f0;
}

.ui-autocomplete-loading {
	background: transparent url(../pages/img/progress/spinner.gif) no-repeat right center !important;
}

/* Busqueda */
.search-column .hint-text {
	color: #333 !important;
}

/* Inputs */
input.tarifa-total, input.alt-bg {
	background-color: #FEFFD2;
}

/* Totalizacion */
#totalizacion td, #totalizacion th {
	text-align: right;
}

#totalizacion td:first-child, #totalizacion th:first-child {
	text-align: left;
}

#totalizacion .top-divider td {
	cursor: default !important;
	border-top: 1px solid #606060;
}

#totalizacion .no-details td {
	cursor: default !important;
}

#totalizacion .no-details td:first-child:before {
	content: '';
	display: none;
	background: none;
}

/* Aside menu */
aside.menu
{
	position: fixed;
	top: var(--pt-header-height);
	left: 0;
	width: var(--pt-mainbar-width);
	height: 100vh;
	z-index: 10;
	transition: all .2s;
	display: flex;
	flex-flow: column;
	border-right: 1px solid var(--pt-border-color);
}

aside.menu::-webkit-scrollbar {
	width: 5px;
}

aside.menu::-webkit-scrollbar-thumb {
	background-color: rgba(0,0,0,0.25);
	border-radius: 10rem;
	border: 1px solid #fff;
}

aside.menu::-webkit-scrollbar-track-piece:start,
aside.menu::-webkit-scrollbar-track-piece:end {
	background: transparent;
}

aside.menu .navigation
{
	height: 100%;
}

aside.menu .navigation ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}

aside.menu .navigation ul li
{
	position: relative;
}

aside.menu .navigation ul li a
{
    display: block;
	color: var(--pt-text-color);
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    text-decoration: none !important;
    padding: 20px 0;
}

aside.menu .navigation ul li a i
{
	display: block;
	font-size: 20px;
}

aside.menu .navigation ul li a span {
	display: none;
    color: #fff;
    background: #000;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    top: calc(50% - 10px);
    left: 100%;
    white-space: nowrap;
    padding: 3px 8px;
    border-radius: 5px;
}

aside.menu .navigation ul li a:hover span {
	display: block;
}

.aside-menu-overlay
{
	visibility: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .4);
	opacity: 0;
	transition: all .2s;
	z-index: 9;
}

@media (max-width: 980px)
{
	aside.menu
	{
		transform: translate3d(-100%, 0, 0);
	}
	
	aside.menu.visible
	{
		transform: translate3d(0, 0, 0);
	}
	
	.aside-menu-overlay.visible
	{
		visibility: visible;
		opacity: 1;
	}
}

/* Boostrap alerts */
.alert .close
{
	line-height: 18px;
}

.alert .close i
{
	font-size: 13px;
	cursor: pointer;
}

.alert p
{
	margin: 0;
}

.alert p + p {
	margin-bottom: 15px;
}

.admin2 .alert-global
{
	position: sticky;
	top: 77px;
	margin-left: 85px;
	width: calc(100% - 85px);
	border: none;
	border-radius: 0px;
	z-index: 5;
	margin-bottom: 0;
}

/* Page > top-bar */
.top-bar {
	display: flex;
	flex-flow: row;
	align-items: start;
	justify-content: space-between;
}

.top-bar .actions {
	display: flex;
	flex-flow: row;
	align-items: start;
}

.top-bar .actions .form-control {
	max-width: 100%;
	width: 200px;
}

.top-bar .actions > * {
	margin-left: 15px;
}

.top-bar .actions > .btn {
	min-width: 195px;
}

@media all and (max-width: 768px) {
	.top-bar {
		flex-flow: column;
		margin-bottom: 40px;
	}
	
	.top-bar .actions {
		flex-flow: column;
		width: 100%;
	}
	
	.top-bar .actions > * {
		margin: 0 0 15px 0;
		width: 100%;
	}
	
	.top-bar .actions .form-control {
		width: 100%;
	}
}

/* Search Results */
.search-results .search-text
{
	margin-bottom: 0px;
}

.search-results .search-term
{
	font-weight: bold;
	font-size: 45px;
}

.search-results ul
{
	list-style: none;
	margin: 50px 0 0 0;
	padding: 0;
}

.search-results ul:after
{
	content: '';
	display: block;
	width: 100%;
	clear: both;
}

.search-results ul li
{
	float: left;
	width: 50%;
	padding: 15px 30px 15px 0;
}

@media all and (max-width: 1200px) {
	.search-results ul li
	{
		float: none;
		width: 100%;
	}
}

.search-results ul li i
{
	background: var(--primary);
	border-radius: 50px;
	display: block;
	width: 50px;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	float: left;
	margin-right: 13px;
}

.search-results ul li a
{
	color: var(--pt-text-color);
	text-decoration: none !important;
}

.search-results ul li span
{
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-results ul li .title
{
	font-size: 20px;
}

.search-results ul li .subtitle
{
	font-size: 12px;
}

/* Page content */
body.admin2 .page-container
{
	margin: 0 0 0 85px;
}

@media (max-width: 980px)
{
	body.admin2 .page-container
	{
		margin: 0;
	}	
}

/* Fake list header */
.fake-list-header {
	background: #fafafa;
    color: #232830;
    font: normal 12px/14px 'Poppins', Arial;
    text-transform: uppercase;
    margin: 0;
    padding: 8px 0 7px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}


/* Select */
select.select-no-border {
	background: transparent;
	border: 1px solid transparent;
}

/* Tabs */
.tab-content
{
	padding-top: 15px;
}

.tab-content .tab-pane
{
	padding: 15px;
}

.tab-content .tab-pane .row
{
	margin-left: -15px;
	margin-right: -15px;
}

/* Special page content */
.special-page-content {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	
}

.special-page-content.with-bg {
	background: url('/assets/backend/img/bg-modal-2.jpg') no-repeat top left;
	background-size: cover;
}

/*
.special-page-content.with-bg::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .5);
	z-index: 2;
}
*/

.special-page-content .content {
	margin: 50px auto;
	padding: 60px;
	width: 1000px;
	max-width: 100%;
}

.special-page-content.with-bg .content {
	position: relative;
	background: var(--pt-main-bg);
	border-radius: var(--pt-border-radius);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	z-index: 5;
}

.special-page-content .content .btn-close {
	position: absolute;
    top: 15px;
    right: 15px;
    color: var(--pt-headings-color);
    background: var(--pt-main-bg);
    text-decoration: none !important;
    width: 25px;
    height: 25px;
	padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.special-page-content .header {
	margin-bottom: 30px;
}

.special-page-content h1.supertitle {
	font-size: 35px;
	font-weight: bold;
	margin: 0;
	text-align: center;
}

.special-page-content h2.title {
	font-size: 35px;
	font-weight: 500;
	margin: 0 0 5px 0;
	text-align: center;
}

.special-page-content h2.title.version2 {
	font-size: 35px;
	margin: 0 auto 40px auto;
	text-align: center;
	max-width: 500px;
}

.special-page-content .subtitle {
	font-size: var(--pt-font-size);
	text-align: center;
	margin: 0 0 30px 0;
}

.special-page-content p.subtitle {
	background: cyan; /* Cambiar el P por el H3 */
}

.special-page-content .hero-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 50px;
	margin: 50px 0;
}

.special-page-content .hero-icon i {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	color: #fff;
	background: var(--primary);
	border: 25px solid #bec0c2;
	outline: 25px solid #d8d9da;
	box-sizing: content-box;
	z-index: 5;
}

.special-page-content .hero-danger i {
	background: var(--danger);
	border: 25px solid #ef8f83;
	outline: 25px solid #ffdeda;
}

.special-page-content .command-buttons {
	max-width: 100%;
	width: 450px;
	margin: 100px auto 0 auto;
}

.special-page-content .command-buttons h4 {
	font-size: 18px;
	margin: 0 0 15px 0;
}

@media all and (max-width: 768px) {
	.special-page-content .content,
	.special-page-content.with-bg .content{
		padding: 30px 15px;
		box-shadow: none;
		position: unset;
	}
	
	.special-page-content.with-bg {
		background: none;
	}
}

/* Precios checkout */
.prices-box-container {
	display: flex;
    align-items: center;
    justify-content: center;
}

.prices-box-container .prices-box {
	position: relative;
	padding: 40px 20px;
	margin: 0 8px;
	background-color: #fff;
	border-radius: var(--pt-border-radius-lg);
	flex: 1;
	max-width: 33.333333%;
	min-height: 290px;
}

.prices-box .price {
	font-size: 33px;
	font-weight: 500;
	color: var(--pt-headings-color);
    width: 100%;
    display: flex;
    justify-content: center;
}

.prices-box h4{
    font-size: 33px;
    font-weight: 500;
    margin: 6px 0 0 0;
    color: var(--pt-headings-color);
}

.prices-box .desc-pricing {
	font-size: var(--pt-font-size-sm);
	width: 100%;
    max-width: 250px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.prices-box .price sup {
    position: unset;
    top: 0;
    font-size: var(--pt-font-size-sm);
}

.prices-box .price-info {
    font-size: var(--pt-font-size-sm);
	color: #ACACAC;
	font-style: italic;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    top: -5px;
}

.prices-box .last-price {
    font-size: 20px;
	color: var(--pt-tertiary-color);
    text-decoration: line-through;
	margin-top: -25px;
}

.prices-box .most-popular-box {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
}

.prices-box .most-popular-box .most-popular {
	display: inline-block;
    font-size: var(--pt-font-size-xs);
    color: #fff;
    background: var(--danger);
    margin-bottom: 0;
    padding: 2px 8px;
    border-radius: var(--pt-border-radius);
}


@media all and (max-width: 680px) {
	.prices-box-container {
		display: block;
	}
	
	.prices-box-container .prices-box {
		width: 100%;
		max-width: 100%;
		margin-bottom: 80px;
	}
	
	.prices-box-container .prices-box:last-child {
		margin-bottom: 0;
	}
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Logo builder */
.logo-preview-wrapper {
	display: none;
	position: absolute;
	top: 0;
	left: 350px;
	width: calc(100% - 350px);
	height: 100%;
	background: #fff;
	z-index: 1;
}

.logo-preview-wrapper img {
	max-width: 90%;
	border: 1px solid red;
}

.logo-preview {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.pagetoday-logo-wrapper .logo {
	position: fixed;
	right: 25px;
	bottom: 25px;
	z-index: 20;
}

.pagetoday-logo-wrapper .logo img {
	width: 100px;
}

.logo-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 18;
	background: #fff;
}

#builder-menu.logo-config
{
	position: absolute;
	top: 0;
	left: 0;
	width: 450px;
	height: 100vh;
	overflow: auto;
	z-index: 2;
	background: #2B2E39;
}

#builder-menu h1, #builder-menu h2, #builder-menu h3, #builder-menu h4, #builder-menu h5, #builder-menu h6
{
	font-family: 'Poppins', sans-serif;
}

/*
#builder-menu label
{
	font-weight: normal;
	color: #fff;
}
*/

#logo-svg
{
	position: absolute;
}

/* Minilist */
.minilist .minilist-item
{
	display: flex;
	align-items: center;
}

.minilist .minilist-item i
{
	font-size: 16px;
}

/* Alert */
.alert-default
{
	background: #eee;
	border: 1px solid #ddd;
}

.alert-default a
{
	color: inherit;
	text-decoration: underline !important;
}

.alert-warning a
{
	color: inherit;
	text-decoration: underline !important;
}

/* Project info */
.project-info h1 {
	font-size: 40px;
	font-weight: bold;
	margin-top: 0;
}

.project-info .screenshot {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 300px;
	border-radius: var(--pt-border-radius);
	background: var(--pt-secondary);
	overflow: hidden;
}

.project-info .screenshot .image {
	position: relative;
	z-index: 2;
	background-size: cover;
}

.project-info .screenshot .text {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.project-info .statics {
	list-style: none;
	margin: 25px 0;
	padding: 0;
}

.project-info .statics li {
	display: flex;
	align-items: center;
	margin: 5px 0;
}

.project-info .statics li i {
	font-size: 17px;
	margin-right: 7px;
}

.project-info .statics li a {
	margin-left: 7px;
}

.project-info .statics li strong {
	margin-right: 7px;
}

/* Horizontal tabs */
.nav.nav-tabs
{
	display: flex;
    width: 100%;
    border: 4px solid var(--pt-border-color);
    border-radius: var(--pt-border-radius);
    background: var(--pt-secondary);
    grid-gap: 6px;
}

.nav:before, .nav:after
{
	display: none;
}

.nav-tabs .nav-item a
{
	font-size: var(--pt-font-size-sm);
	border: none !important;
	background: transparent !important;
	padding: 8px 6px;
	border-radius: 4px !important;
	text-decoration: none;
}

.nav-tabs .nav-item:not(.active):hover a
{
	opacity: .8;
}

.nav-tabs .nav-item.active a
{
	color: #606367 !important;
    background: #fff !important;
}

.nav-tabs.nav-tabs-scrollable
{
	display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    overflow-y: hidden;
}

.nav-tabs.nav-tabs-scrollable::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
 
.nav-tabs.nav-tabs-scrollable::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .2);
}
 
.nav-tabs.nav-tabs-scrollable::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .3);
}

/*
.nav-tabs.nav-tabs-scrollable:after
{
	content: '';
    display: block;
    width: 50px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
}


.nav-tabs.nav-tabs-scrollable li:last-child
{
	padding-right: 60px;
}
*/

.nav-tabs.nav-tabs-scrollable .nav-item
{
	margin-bottom: 0px;
	width: auto;
}

.nav-justified .nav-item {
	flex: 1;
}

/* Sortable */
.general-sortable-helper
{
	background: #fff;
	max-width: 200px !important;
	min-height: 10px !important;
	padding: 0px !important;
	margin: 0 !important;
	box-shadow: 0 3px 8px rgba(0, 0, 0, .5);
	cursor: move;
	cursor: grabbing;
	opacity: .8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.general-sortable-placeholder
{
	background: #fffa90;
}

.general-sortable-placeholder td
{
	background: #fffa90 !important;
}

.general-sortable-handle
{
	margin-right: 5px;
	padding: 2px;
	cursor: move;
	cursor: grab;
}

/* Payment methods list */
.payment-methods-list
{
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 460px;
	width: 100%;
	margin: 0 auto;
}

.payment-methods-list li
{
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: space-around;
	border: 1px solid var(--pt-main-bg);
	margin-bottom: 10px;
	border-radius: var(--pt-border-radius);
}

.payment-methods-list li label
{
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px 0 30px;
	margin: 0;
	width: 100%;
	height: 70px;
	cursor: pointer;
}

.payment-methods-list li label img
{
	width: 70px;
}

/* Payment cards */
.payment-cards
{
	max-width: 490px;
	width: 100%;
	margin: 0 auto;
}

.payment-cards .payment-card
{
	position: relative;
	display: flex;
    flex-flow: row;
	align-items: center;
	font-size: 16px;
	background: var(--pt-main-bg);
	border-radius: var(--pt-border-radius);
	height: 52px;
	padding: 0 25px;
	border: 2px solid transparent;
	cursor: pointer;
	user-select: none;
}

.payment-cards .payment-card .payment-card-type
{
	width: 130px;
}

.payment-cards .payment-card .payment-card-number
{
	flex: 1;
}

.payment-cards .payment-card .payment-card-exp-date
{
	min-width: 50px;
	text-align: right;
}

.payment-cards input:checked + .payment-card
{
	border-color: var(--primary);
}

.payment-cards input:checked + .payment-card::after
{
	content: "\e64c";
	position: absolute;
	top: 0;
	right: 0;
	width: 22px;
	height: 22px;
	font-family: 'themify';
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background: var(--primary);
	border-radius: 0 0 0 var(--pt-border-radius);
	padding-top: 2px;
	z-index: 1;
}

/* List groups */
.list-group .list-group-item
{
	border: none;
	margin-bottom: 10px;
	border-radius: var(--pt-border-radius);
}

.list-group .list-group-item:hover {
	background: var(--pt-secondary);

}

.list-group .list-group-item label
{
	margin: 0;
}

.list-group .list-group-item label input[type="checkbox"]
{
	position: relative;
	top: 1px;
	margin-right: 5px;
}

.list-group .list-group-item i.cmd
{
	cursor: pointer;
	float: right;
}

.list-group .list-group-item .btn-delete
{
	color: #dc3545;
}

.list-group .list-group-item-text-lg {
	font-size: var(--font-size-md);
	font-weight: 500;
}

.list-group.list-group-advanced .list-group-item {
	position: relative;
	display: flex;
	flex-flow: row;
	align-items: center;
}

.list-group.list-group-advanced .list-group-item::after {
	content: "\e649";
	position: absolute;
	top: calc(50% - 9px);
	right: 30px;
	font-size: 17px;
	color: var(--pt-headings-color);
	font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.list-group.list-group-advanced .list-group-item {
	padding: 18px;
}

.list-group.list-group-advanced .list-group-item i {
	color: var(--pt-headings-color);
	display: block;
	width: 23px;
	font-size: 23px;
	text-align: center;
	margin-left: 7px;
	margin-right: 20px;
}

.list-group.list-group-advanced .list-group-item img {
	width: 23px;
	max-height: 23px;
	margin-left: 7px;
	margin-right: 20px;
}

.list-group-container {
	height: 100%;
	min-height: 200px;
	max-height: 250px;
	overflow-y: auto;
}

/* Grid */
ul.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.grid li {
	border: 1px solid var(--pt-main-bg);
	margin: 10px;
	padding: 10px;
	text-align: center;
	font-size: 12px;
	cursor: grab;
	background: #fff;
	border-radius: var(--pt-border-radius);
}

ul.grid li img {
	width: 100%;
	border-radius: var(--pt-border-radius);
	margin-bottom: 5px;
}

ul.grid li.ui-sortable-helper {
	cursor: grabbing;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

/* Panel container */
.panel-container {
	display: flex;	
}

.panel-container .panel {
	flex: 1;	
}

.panel-container.panel-2 .panel:nth-child(1) {
	margin-right: 7px;
}

.panel-container.panel-2 .panel:nth-child(2) {
	margin-left: 7px;
}

@media all and (max-width: 768px) {
	.panel-container {
		display: block;	
	}
	
	.panel-container .panel {
		margin: 0 0 15px 0 !important;
	}
}

/* Panel timeline */
.panel-container-timeline
{
	position: relative;
	display: flex;
	flex-flow: column;
}

.panel-container-timeline::before
{
	content: '';
	width: 6px;
	height: 100%;
	background: var(--pt-main-bg);
	position: absolute;
	top: 0;
	left: calc(50% - 3px);
	z-index: 0;
	border-radius: 10px;
}

.panel-container-timeline .panel
{
	position: relative;
	z-index: 1;
}

.panel-container-timeline .panel:nth-child(odd)
{
	margin-left: calc(50% + 3px);
}

.panel-container-timeline .panel:nth-child(even)
{
	margin-right: calc(50% + 3px);
}

.panel-container-timeline .panel:last-child
{
	margin-bottom: 0;
}

/* Panel */
.panel {
	box-shadow: none !important;
}

.panel.with-table .panel-body {
	padding: 0;
}

.panel.with-table .panel-body table {
	margin: 0;	
}

.panel.panel-default > .panel-heading {
	color: inherit;
	background-color: inherit;
	border-color: inherit;
	border-bottom: none;
}

/* Media list */
.media-list.media-list-advanced .media {
	display: flex;
	flex-flow: row;
	margin-top: 20px;
}

.media-list.media-list-advanced .media:first-child {
	margin-top: 0px;
}

.media-list.media-list-advanced .media-left {
	display: flex;
	padding-right: 20px;
}

.media-list.media-list-advanced .media-left i {
	display: inline-block;
	text-align: center;
	font-size: 30px;
	color: var(--pt-text-color);
	width: 85px;
	height: 85px;
	line-height: 80px;
	background: #fff;
	border-radius: var(--pt-border-radius);
}

.media-list.media-list-advanced .media-heading {
	font-size: var(--pt-font-size-lg);
	font-weight: bold;
	color: var(--pt-headings-color);
	margin: 0 0 5px 0;
}

.media-list.media-list-advanced p {
	margin-bottom: 5px;
}

.media-list.media-list-advanced p {
	font-size: small;
}

.media-list.media-list-advanced .media-body {
	display: flex;
	flex-flow: column;
	align-items: left;
	justify-content: center;
}

.media-list.media-list-advanced .media-left i.danger {
	color: var(--danger);
}

.media-list.media-list-advanced .media-left i.warning {
	color: var(--warning);
}

.media-list.media-list-advanced .media-left i.success {
	color: var(--success);
}

.media-list.media-list-advanced .media-left i.info {
	color: var(--info);
}

/* Chip */
.chip {
	display: inline-block;
	padding: 7px 15px;
	border: 1px solid var(--pt-main-bg);
	border-radius: var(--pt-border-radius);
}

.chip:hover {
	background: var(--pt-main-bg);
}

.chip + .chip {
	margin-left: 5px;
}

.chip-sm {
	font-size: var(--pt-font-size-sm);
}

/* Pagination */
.page-link
{
	color: var(--pt-primary);
}
.page-item.active .page-link
{
	background-color: var(--pt-primary);
    border-color: var(--pt-primary);
}

/* Modal: builder helper */
#builder-modal-helper .list-group-item
{
	display: flex;
	align-items: center;
}

#builder-modal-helper .list-group-item span:first-child
{
	flex: 1;
}

/* FontAwesome icons */
.fa-icon-circle
{
	display: inline-block;
    border: 1px solid;
    padding: 1px 6px;
    border-radius: 50px;
    transform: scale(.75);
}

/* Special session page */
.sesion-page-wrapper {
	display: flex;
	flex-flow: row;
}

.sesion-page-wrapper .column {
	width: 80%;
	flex: 2;
	margin: 0 auto;
}

.sesion-page-wrapper .column.aside {
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20%;
	height: 100vh;
	flex: 1;
	background: var(--pt-main-bg);
	padding: 70px;
}

@media all and (max-width: 1400px) {
	.sesion-page-wrapper .column {
		max-width: 700px;
	}
}

@media all and (max-width: 1200px) {
	.sesion-page-wrapper .column {
		max-width: 650px;
	}
}

@media all and (max-width: 1024px) {
	.sesion-page-wrapper .column.aside {
		display: none;
	}
	
	.sesion-page-wrapper .column {
		width: 100%;
		max-width: unset;
	}
}

/* Traducciones */
.traducciones h5 {
	margin: 70px 0 0 0;	
}

.traducciones textarea {
	min-width: 300px;
}

.traducciones .language img {
	vertical-align: baseline;
}

.traducciones .language {
	text-transform: uppercase;
}

.traducciones .form-group {
	margin: 0;
}

.traducciones label.error {
	position: unset;
	margin-top: 3px;
}

.traducciones .table-header {
	position: fixed;
	top: 100px;
	left: 0;
	background: white;
	padding: 5px 0;
	border-bottom: 1px solid var(--pt-main-bg);
}

.traducciones .table-header .col {
	padding-left: 30px;
	display: inline-block;
	font-weight: bold;
	text-transform: uppercase;
}

.traducciones .table-header .col img {
	vertical-align: baseline;
	width: 18px;
}

/* Alerty */
.alerty {
	display: flex;
	flex-flow: row;
	background: var(--pt-main-bg);
	border-radius: var(--pt-border-radius-lg);
	padding: 35px 40px;
}

.alerty-icon {
	font-size: 30px;
	margin-right: 29px;
	color: var(--pt-headings-color);
}

.alerty-content {
	flex: 1;
}

.alerty-content h5 {
	font-size: 20px;
	font-weight: 500;
	margin: 0;
}

.alerty-content p:last-child {
	margin: 0;
}


@media all and (max-width: 768px) {
	.alerty {
		flex-flow: column;
		text-align: center;
	}
	
	.alerty-actions {
		margin-top: 16px;
	}
}

/* Blockquotes */
.blockquote p {
	font-size: var(--pt-font-size-sm);
	margin-bottom: 7px;
}

.blockquote .author {
	font-weight: bold;
	color: var(--info);
}

.blockquote blockquote {
	font-size: 25px;
	font-weight: 500;
	font-style: italic;
	color: var(--pt-headings-color);
	padding: 0;
	border: none;
	margin-bottom: 7px;
}

/* Simple popover button */
.simple-popover-button {
	max-width: 300px;
}


/* Overrides 
------------------------------------
*/
.line-through {
	text-decoration: line-through;
}
.no-padding {
  padding: 0px !important;
}
.no-margin {
  margin: 0px !important;
}
.no-overflow {
  overflow: hidden !important;
}
.auto-overflow {
  overflow: auto;
}
.center-margin {
  margin-left: auto;
  margin-right: auto;
}
.inherit-size {
  width: inherit;
  height: inherit;
}
.inherit-height {
  height: inherit;
}
.image-responsive-height {
  width: 100%;
}
.image-responsive-width {
  height: 100%;
}
.overlayer {
  position: absolute;
  display: block;
  z-index: 21;
}
.overlayer.fullwidth {
  width: 100%;
}
.overlayer-wrapper {
  position: relative;
  display: block;
  z-index: 10;
}
.overlay-fixed {
  position: fixed !important;
  top: auto !important;
}
.top-left {
  position: absolute !important;
  top: 0;
  left: 0;
}
.top-right {
  position: absolute !important;
  top: 1px;
  right: 0;
}
.bottom-left {
  position: absolute !important;
  bottom: 1px;
  left: 0;
}
.bottom-right {
  position: absolute !important;
  bottom: 0;
  right: 0;
}
.pull-bottom {
  position: absolute !important;
  bottom: 0;
}
.pull-up {
  position: absolute !important;
  top: 0;
}
.cursor {
  cursor: pointer;
}
.scroll-x-hidden {
  overflow-x: hidden !important;
}
.nowrap {
	white-space: nowrap;
}
/* Generic Padding Helpers 
------------------------------------
*/
.p-t-5 {
  padding-top: 5px !important;
}
.p-r-5 {
  padding-right: 5px !important;
}
.p-l-5 {
  padding-left: 5px !important;
}
.p-b-5 {
  padding-bottom: 5px !important;
}
.padding-5 {
  padding: 5px !important;
}
.p-t-10 {
  padding-top: 10px !important;
}
.p-r-10 {
  padding-right: 10px !important;
}
.p-l-10 {
  padding-left: 10px !important;
}
.p-b-10 {
  padding-bottom: 10px !important;
}
.padding-10 {
  padding: 10px !important;
}
.p-t-15 {
  padding-top: 15px !important;
}
.p-r-15 {
  padding-right: 15px !important;
}
.p-l-15 {
  padding-left: 15px !important;
}
.p-b-15 {
  padding-bottom: 15px !important;
}
.padding-15 {
  padding: 15px !important;
}
.p-t-20 {
  padding-top: 20px !important;
}
.p-r-20 {
  padding-right: 20px !important;
}
.p-l-20 {
  padding-left: 20px !important;
}
.p-b-20 {
  padding-bottom: 20px !important;
}
.padding-20 {
  padding: 20px !important;
}
.p-t-25 {
  padding-top: 25px !important;
}
.p-r-25 {
  padding-right: 25px !important;
}
.p-l-25 {
  padding-left: 25px !important;
}
.p-b-25 {
  padding-bottom: 25px !important;
}
.padding-25 {
  padding: 25px !important;
}
.p-t-30 {
  padding-top: 30px !important;
}
.p-r-30 {
  padding-right: 30px !important;
}
.p-l-30 {
  padding-left: 30px !important;
}
.p-b-30 {
  padding-bottom: 30px !important;
}
.padding-30 {
  padding: 30px !important;
}
.p-t-35 {
  padding-top: 35px !important;
}
.p-r-35 {
  padding-right: 35px !important;
}
.p-l-35 {
  padding-left: 35px !important;
}
.p-b-35 {
  padding-bottom: 35px !important;
}
.padding-35 {
  padding: 35px !important;
}
.p-t-40 {
  padding-top: 40px !important;
}
.p-r-40 {
  padding-right: 40px !important;
}
.p-l-40 {
  padding-left: 40px !important;
}
.p-b-40 {
  padding-bottom: 40px !important;
}
.padding-40 {
  padding: 40px !important;
}
.p-t-45 {
  padding-top: 45px !important;
}
.p-r-45 {
  padding-right: 45px !important;
}
.p-l-45 {
  padding-left: 45px !important;
}
.p-b-45 {
  padding-bottom: 45px !important;
}
.padding-45 {
  padding: 45px !important;
}
.p-t-50 {
  padding-top: 50px !important;
}
.p-r-50 {
  padding-right: 50px !important;
}
.p-l-50 {
  padding-left: 50px !important;
}
.p-b-50 {
  padding-bottom: 50px !important;
}
.padding-50 {
  padding: 50px !important;
}
.p-t-55 {
  padding-top: 55px !important;
}
.p-r-55 {
  padding-right: 55px !important;
}
.p-l-55 {
  padding-left: 55px !important;
}
.p-b-55 {
  padding-bottom: 55px !important;
}
.padding-55 {
  padding: 55px !important;
}
.p-t-60 {
  padding-top: 60px !important;
}
.p-r-60 {
  padding-right: 60px !important;
}
.p-l-60 {
  padding-left: 60px !important;
}
.p-b-60 {
  padding-bottom: 60px !important;
}
.padding-60 {
  padding: 60px !important;
}
.p-t-65 {
  padding-top: 65px !important;
}
.p-r-65 {
  padding-right: 65px !important;
}
.p-l-65 {
  padding-left: 65px !important;
}
.p-b-65 {
  padding-bottom: 65px !important;
}
.padding-65 {
  padding: 65px !important;
}
.p-t-70 {
  padding-top: 70px !important;
}
.p-r-70 {
  padding-right: 70px !important;
}
.p-l-70 {
  padding-left: 70px !important;
}
.p-b-70 {
  padding-bottom: 70px !important;
}
.padding-70 {
  padding: 70px !important;
}
.p-t-75 {
  padding-top: 75px !important;
}
.p-r-75 {
  padding-right: 75px !important;
}
.p-l-75 {
  padding-left: 75px !important;
}
.p-b-75 {
  padding-bottom: 75px !important;
}
.padding-75 {
  padding: 75px !important;
}
.p-t-80 {
  padding-top: 80px !important;
}
.p-r-80 {
  padding-right: 80px !important;
}
.p-l-80 {
  padding-left: 80px !important;
}
.p-b-80 {
  padding-bottom: 80px !important;
}
.padding-80 {
  padding: 80px !important;
}
.p-t-85 {
  padding-top: 85px !important;
}
.p-r-85 {
  padding-right: 85px !important;
}
.p-l-85 {
  padding-left: 85px !important;
}
.p-b-85 {
  padding-bottom: 85px !important;
}
.padding-85 {
  padding: 85px !important;
}
.p-t-90 {
  padding-top: 90px !important;
}
.p-r-90 {
  padding-right: 90px !important;
}
.p-l-90 {
  padding-left: 90px !important;
}
.p-b-90 {
  padding-bottom: 90px !important;
}
.padding-90 {
  padding: 90px !important;
}
.p-t-95 {
  padding-top: 95px !important;
}
.p-r-95 {
  padding-right: 95px !important;
}
.p-l-95 {
  padding-left: 95px !important;
}
.p-b-95 {
  padding-bottom: 95px !important;
}
.padding-95 {
  padding: 95px !important;
}
.p-t-100 {
  padding-top: 100px !important;
}
.p-r-100 {
  padding-right: 100px !important;
}
.p-l-100 {
  padding-left: 100px !important;
}
.p-b-100 {
  padding-bottom: 100px !important;
}
.padding-100 {
  padding: 100px !important;
}
/* Generic Margin Helpers
------------------------------------
 */
.m-t-0 {
  margin-top: 0px;
}
.m-r-0 {
  margin-right: 0px;
}
.m-l-0 {
  margin-left: 0px;
}
.m-b-0 {
  margin-bottom: 0px;
}
.m-t-5 {
  margin-top: 5px;
}
.m-r-5 {
  margin-right: 5px;
}
.m-l-5 {
  margin-left: 5px;
}
.m-b-5 {
  margin-bottom: 5px;
}
.m-t-10 {
  margin-top: 10px;
}
.m-r-10 {
  margin-right: 10px;
}
.m-l-10 {
  margin-left: 10px;
}
.m-b-10 {
  margin-bottom: 10px;
}
.m-t-15 {
  margin-top: 15px;
}
.m-r-15 {
  margin-right: 15px;
}
.m-l-15 {
  margin-left: 15px;
}
.m-b-15 {
  margin-bottom: 15px;
}
.m-t-20 {
  margin-top: 20px;
}
.m-r-20 {
  margin-right: 20px;
}
.m-l-20 {
  margin-left: 20px;
}
.m-b-20 {
  margin-bottom: 20px;
}
.m-t-25 {
  margin-top: 25px;
}
.m-r-25 {
  margin-right: 25px;
}
.m-l-25 {
  margin-left: 25px;
}
.m-b-25 {
  margin-bottom: 25px;
}
.m-t-30 {
  margin-top: 30px;
}
.m-r-30 {
  margin-right: 30px;
}
.m-l-30 {
  margin-left: 30px;
}
.m-b-30 {
  margin-bottom: 30px;
}
.m-t-35 {
  margin-top: 35px;
}
.m-r-35 {
  margin-right: 35px;
}
.m-l-35 {
  margin-left: 35px;
}
.m-b-35 {
  margin-bottom: 35px;
}
.m-t-40 {
  margin-top: 40px;
}
.m-r-40 {
  margin-right: 40px;
}
.m-l-40 {
  margin-left: 40px;
}
.m-b-40 {
  margin-bottom: 40px;
}
.m-t-45 {
  margin-top: 45px;
}
.m-r-45 {
  margin-right: 45px;
}
.m-l-45 {
  margin-left: 45px;
}
.m-b-45 {
  margin-bottom: 45px;
}
.m-t-50 {
  margin-top: 50px;
}
.m-r-50 {
  margin-right: 50px;
}
.m-l-50 {
  margin-left: 50px;
}
.m-b-50 {
  margin-bottom: 50px;
}
.m-t-55 {
  margin-top: 55px;
}
.m-r-55 {
  margin-right: 55px;
}
.m-l-55 {
  margin-left: 55px;
}
.m-b-55 {
  margin-bottom: 55px;
}
.m-t-60 {
  margin-top: 60px;
}
.m-r-60 {
  margin-right: 60px;
}
.m-l-60 {
  margin-left: 60px;
}
.m-b-60 {
  margin-bottom: 60px;
}
.m-t-65 {
  margin-top: 65px;
}
.m-r-65 {
  margin-right: 65px;
}
.m-l-65 {
  margin-left: 65px;
}
.m-b-65 {
  margin-bottom: 65px;
}
.m-t-70 {
  margin-top: 70px;
}
.m-r-70 {
  margin-right: 70px;
}
.m-l-70 {
  margin-left: 70px;
}
.m-b-70 {
  margin-bottom: 70px;
}
.m-t-75 {
  margin-top: 75px;
}
.m-r-75 {
  margin-right: 75px;
}
.m-l-75 {
  margin-left: 75px;
}
.m-b-75 {
  margin-bottom: 75px;
}
.m-t-80 {
  margin-top: 80px;
}
.m-r-80 {
  margin-right: 80px;
}
.m-l-80 {
  margin-left: 80px;
}
.m-b-80 {
  margin-bottom: 80px;
}
.m-t-85 {
  margin-top: 85px;
}
.m-r-85 {
  margin-right: 85px;
}
.m-l-85 {
  margin-left: 85px;
}
.m-b-85 {
  margin-bottom: 85px;
}
.m-t-90 {
  margin-top: 90px;
}
.m-r-90 {
  margin-right: 90px;
}
.m-l-90 {
  margin-left: 90px;
}
.m-b-90 {
  margin-bottom: 90px;
}
.m-t-95 {
  margin-top: 95px;
}
.m-r-95 {
  margin-right: 95px;
}
.m-l-95 {
  margin-left: 95px;
}
.m-b-95 {
  margin-bottom: 95px;
}
.m-t-100 {
  margin-top: 100px;
}
.m-r-100 {
  margin-right: 100px;
}
.m-l-100 {
  margin-left: 100px;
}
.m-b-100 {
  margin-bottom: 100px;
}
.full-height {
  height: 100% !important;
}
.full-width {
  width: 100%;
}
.hide {
  display: none;
}
.inline {
  display: inline-block !important;
}
.block {
  display: block;
}
.b-blank {
  border-color: #000;
}
.clearfix {
	clear: both;
}