.croppie-container {
    width: 100%;
    height: 100%;
}

.croppie-container .cr-image {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    max-height: none;
    max-width: none;
}

.croppie-container .cr-boundary {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
    position: absolute;
    border: 2px solid #fff;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.croppie-container .cr-resizer {
  z-index: 2;
  box-shadow: none;
  pointer-events: none;
}

.croppie-container .cr-resizer-vertical,
.croppie-container .cr-resizer-horisontal {
  position: absolute;
  pointer-events: all;
}

.croppie-container .cr-resizer-vertical::after,
.croppie-container .cr-resizer-horisontal::after {
    display: block;
    position: absolute;
    box-sizing: border-box;
    border: 1px solid black;
    background: #fff;
    width: 10px;
    height: 10px;
    content: '';
}

.croppie-container .cr-resizer-vertical {
  bottom: -5px;
  cursor: row-resize;
  width: 100%;
  height: 10px;
}

.croppie-container .cr-resizer-vertical::after {
    left: 50%;
    margin-left: -5px;
}

.croppie-container .cr-resizer-horisontal {
  right: -5px;
  cursor: col-resize;
  width: 10px;
  height: 100%;
}

.croppie-container .cr-resizer-horisontal::after {
    top: 50%;
    margin-top: -5px;
}

.croppie-container .cr-original-image {
    display: none;
}

.croppie-container .cr-vp-circle {
    border-radius: 50%;
}

.croppie-container .cr-overlay {
    z-index: 1;
    position: absolute;
    cursor: move;
    touch-action: none;
}

.croppie-container .cr-slider-wrap {
    width: 75%;
    margin: 15px auto;
    text-align: center;
}

.croppie-result {
    position: relative;
    overflow: hidden;
}

.croppie-result img {
    position: absolute;
}

.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

/*************************************/
/***** STYLING RANGE INPUT ***********/
/*************************************/
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
/*************************************/

.cr-slider {
    -webkit-appearance: none;
/*removes default webkit styles*/
	/*border: 1px solid white; *//*fix for FF unable to apply focus style bug */
    width: 300px;
/*required for proper track sizing in FF*/
    max-width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: transparent;
}

.cr-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}

.cr-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: -6px;
}

.cr-slider:focus {
    outline: none;
}
/*
.cr-slider:focus::-webkit-slider-runnable-track {
background: #ccc;
}
*/

.cr-slider::-moz-range-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}

.cr-slider::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: -6px;
}

/*hide the outline behind the border*/
.cr-slider:-moz-focusring {
    outline: 1px solid white;
    outline-offset: -1px;
}

.cr-slider::-ms-track {
    width: 100%;
    height: 5px;
    background: transparent;
/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
	border-color: transparent;/*leave room for the larger thumb to overflow with a transparent border */
	border-width: 6px 0;
	color: transparent;/*remove default tick marks*/
}
.cr-slider::-ms-fill-lower {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}
.cr-slider::-ms-fill-upper {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}
.cr-slider::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #ddd;
	margin-top:1px;
}
.cr-slider:focus::-ms-fill-lower {
	background: rgba(0, 0, 0, 0.5);
}
.cr-slider:focus::-ms-fill-upper {
	background: rgba(0, 0, 0, 0.5);
}
/*******************************************/

/***********************************/
/* Rotation Tools */
/***********************************/
.cr-rotate-controls {
	position: absolute;
	bottom: 5px;
	left: 5px;
	z-index: 1;
}
.cr-rotate-controls button {
	border: 0;
	background: none;
}
.cr-rotate-controls i:before {
	display: inline-block;
	font-style: normal;
	font-weight: 900;
	font-size: 22px;
}
.cr-rotate-l i:before {
	content: '↺';
}
.cr-rotate-r i:before {
	content: '↻';
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.3);
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3);
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(0, 0, 0, 0.3);
}
:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3);
}

/**
 *  
 * ======================================================================================================= *
 */
.hidden {
  display: none !important;
}
.hidden.active {
  display: block !important;
}

/**
 *  link
 * ======================================================================================================= *
 */
.default-link {
  font-weight: 800;
  font-family: "Ubuntu";
  color: #a846dc;
  text-decoration: none;
  border-bottom: 2px solid #a846dc;
  cursor: pointer;
}
.default-title {
  font-weight: 800;
  font-family: "Ubuntu";
  color: #a846dc;
  text-decoration: none;
}

/**
 * 
 * ======================================================================================================= *
 */
.default-table {
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font: 400 1rem "Ubuntu";
  border-left: 2px solid #f5f5f5;
  border-right: 2px solid #f5f5f5;
}
.default-table thead {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}
.default-table thead th {
  cursor: pointer;
  font-weight: 800;
  border-top: 2px solid #f5f5f5;
  border-bottom: 2px solid #f5f5f5;
  padding: 0 10px;
}
.default-table tr {
  position: relative;
  height: 40px;
  min-width: 100%;
  color: #636363;
  transition: all 350ms ease;
  -o-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
}

.default-table .border-highlight-green td:first-child {
  border-left: 4px solid #15da8e;
}
.default-table .border-highlight-red td:first-child {
  border-left: 4px solid #ff0a53;
}
.default-table .border-highlight-blue td:first-child {
  border-left: 4px solid #0a9dff;
}
.default-table .border-highlight-default td:first-child {
  border-left: 4px solid #2b2f45;
}
.default-table tr td {
  font-size: 1rem;
  border-bottom: 2px solid #f5f5f5;
  padding: 5px 10px;
}
.default-table tbody tr:hover td {
  height: 40px;
  background: #f9f9f9;
  color: #2b2f45;
  cursor: pointer;
}
.default-table .sorting_icon {
  float: right;
  width: 20px;
  height: 20px;
  font-size: 1.15rem;
  text-align: center;
  color: #e0e0e0;
}
.default-table .dropdown-menu {
}

/**
 * 
 * ======================================================================================================= *
 */
.submit-large {
  height: 70px !important;
  font-size: 1.25rem !important;
  line-height: 70px;
}
.submit-green {
  background: #0cbd79 !important;
  border-color: #0cbd79 !important;
}

/**
 * 
 * ======================================================================================================= *
 */
.floatleft {
  float: left !important;
}
.floatright {
  float: right !important;
}

/**
 * 
 * ======================================================================================================= *
 */
.fz0-6rem {
  font-size: 0.6rem !important;
}
.fz0-8rem {
  font-size: 0.8rem !important;
}
.fz0-9rem {
  font-size: 0.9rem !important;
}
.fz1rem {
  font-size: 1rem !important;
}
.fz1-25rem {
  font-size: 1.25rem !important;
}
.fz1-5rem {
  font-size: 1.5rem !important;
}

.text-upper {
  text-transform: uppercase !important;
}
.text-center {
  text-align: center !important;
}

.removed,
.removed .list-table-col {
  opacity: 0.85;
  text-decoration: line-through;
}

/**
 * 
 * ======================================================================================================= *
 */
.bold {
  font-weight: 800;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0px !important;
}
.mt-05 {
  margin-top: 5px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mt-50 {
  margin-top: 50px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}

.mr-0 {
  margin-right: 0px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mr-25 {
  margin-right: 25px !important;
}

.ml-0 {
  margin-left: 0px !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.ml-25 {
  margin-left: 25px !important;
}

.pad-0 {
  padding: 0 !important;
}
.pad-80 {
  padding: 80px !important;
}
.pt-0 {
  padding-top: 0 !important;
}

/**
 * colors
 * ======================================================================================================= *
 */
.color-highlight {
  color: #a846dc !important;
}
.color-green {
  color: #15da8e !important;
}
.color-white {
  color: #fff !important;
}
.color-red {
  color: #ff0a53 !important;
}
.color-gray {
  color: #636363 !important;
}
.color-lightgray {
  color: #bbbbbb !important;
}

.hover-color-red:hover {
  color: #ff0a53 !important;
}
.hover-color-green:hover {
  color: #15da8e !important;
}
.hover-color-highlight:hover {
  color: #a846dc !important;
}

/**
 * backgrounds
 * ======================================================================================================= *
 */
.bg-highlight {
  background-color: #a846dc !important;
}
.bg-red {
  background-color: #ff0a53 !important;
}
.bg-green {
  background-color: #15da8e !important;
}

/**
 * toggle class
 * ======================================================================================================= *
 */
.display-hide {
  display: none;
}
.display-hide.active,
.display-show {
  display: block;
}

/**
 * images
 * ======================================================================================================= *
 */
.rounded {
  border-radius: 50%;
  overflow: hidden;
}
.w25px {
  width: 25px;
}
.w50px {
  width: 50px;
}
.w100pc {
  width: 100% !important;
}

/**
 * colluns teplate
 * ======================================================================================================= *
 */
.row {
  float: left;
  width: 100%;
}
.row::after {
  content: "";
  clear: both;
  display: table;
  margin-bottom: 5px;
}
[class*="col-"] {
  float: left;
  margin: 5px;
}
.col-1 {
  width: calc(8.33% - 10px);
}
.col-2 {
  width: calc(16.66% - 10px);
}
.col-3 {
  width: calc(25% - 10px);
}
.col-4 {
  width: calc(33.33% - 10px);
}
.col-5 {
  width: calc(41.66% - 10px);
}
.col-6 {
  width: calc(50% - 10px);
}
.col-7 {
  width: calc(58.33% - 10px);
}
.col-8 {
  width: calc(66.66% - 10px);
}
.col-9 {
  width: calc(75% - 10px);
}
.col-10 {
  width: calc(83.33% - 10px);
}
.col-11 {
  width: calc(91.66% - 10px);
}
.col-12 {
  width: calc(100% - 10px);
}

/**
 * BOX css
 * ======================================================================================================= *
 */
.box {
  float: left;
  border: none;
  border: 2px solid #f5f5f5;
  padding: 10px;
  border-radius: 5px;
  background: #fff;
  font: 400 1.2em "Ubuntu";
  color: #636363;
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.box > .title,
.box .box-title {
  font: 400 1.5rem "Ubuntu";
  margin-bottom: 15px;
  color: #a846dc;
}
.box > .message,
.box .box-message {
  font: 400 1rem "Ubuntu";
  color: #636363;
}

.box-border-left {
  float: left;
  border-left: 2px solid #f5f5f5;
}

/**
 * buttons
 * ======================================================================================================= *
 */
.btn-text {
  text-transform: uppercase;
  font: 800 0.9em "Ubuntu";
  padding: 10px;
  cursor: pointer;
}

/**
 * 
 * ======================================================================================================= *
 */
hr {
  border: 0.5px solid #ebebeb;
}

/**
 * Loading
 * ======================================================================================================= *
 */

.loading {
  float: left;
  width: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999999999;
  background: rgba(0, 0, 0, 0.3);
}
.loading.active {
  display: block;
}
.loading .loadingbox {
  position: relative;
  float: left;
  width: 80px;
  height: 120px;
  left: 50%;
  top: 50%;
  margin: -60px -40px;
  text-align: center;
  font: 400 0.8rem "Ubuntu";
  text-transform: uppercase;
  color: #a846dc;
}
.loading .loadingbox div.icon {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #a846dc;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**
 * list-table
 * ======================================================================================================= *
 */
.list-table {
  position: relative;
  float: left;
  padding: 0;
  border: 2px solid #f5f5f5;
  border-radius: 5px;
  background: #fff;
  color: #636363;
  font: 400 1rem "Ubuntu";
}
.list-table .overflow {
  overflow: hidden;
  overflow-x: auto;
}
.list-table-row {
  float: left;
  height: 40px;
  min-width: 100%;
  color: #636363;
  border-bottom: 2px solid #f5f5f5;

  transition: all 350ms ease;
  -o-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
}
.list-table-row.border-highlight-green {
  border-left: 4px solid #15da8e;
}
.list-table-row.border-highlight-red {
  border-left: 4px solid #ff0a53;
}
.list-table-row.border-highlight-blue {
  border-left: 4px solid #0a9dff;
}
.list-table-row.border-highlight-default {
  border-left: 4px solid #a846dc;
}
.list-table-body .list-table-row:hover .list-table-col {
  height: 40px;
  background: #f9f9f9;
  color: #a846dc;
  cursor: pointer;
}
.list-table-body .list-table-row:last-child {
  border-bottom: none;
}
.list-table-col {
  float: left;
  padding: 7.5px 15px;
  text-align: left;
}
.list-table-header {
  font-size: 0.9em;
  font-weight: 800;
  text-transform: uppercase;
}
.dropdown-menu {
  position: absolute;
  float: right;
  right: 0;
  z-index: 1;
  margin-top: 0px;
  margin-right: 5px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  width: 150px;
  height: auto;
  padding: 10px;
  border: 2px solid #f5f5f5;
  border-radius: 5px;
  background: #fff;
  display: none;

  transition: all 350ms ease;
  -o-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
}
.dropdown-menu * {
  list-style: none;
}
.dropdown-menu.active {
  display: block;
}
.dropdown-menu .title,
.dropdown-menu .label,
.dropdown-menu .cancel {
  float: left;
  width: 100%;
}
.dropdown-menu .title {
  border-bottom: 2px solid #f5f5f5;
  padding: 0 0 5px 0;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #bbbbbb;
}
.dropdown-menu .label {
  padding: 2px 0;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
  color: #bbbbbb;
  cursor: pointer;
  text-align: left;
  border: none;
  text-transform: capitalize;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  transition: all 350ms ease;
  -o-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
}
.dropdown-menu a {
  text-decoration: none;
  color: inherit;
}
.dropdown-menu .cancel {
  border-top: 2px solid #f5f5f5;
  padding: 5px 0 0 0;
  margin-top: 10px;
  text-align: center !important;
  text-transform: uppercase !important;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}
.no-data {
  font: 400 0.7rem "Ubuntu";
  text-transform: uppercase;
  color: rgb(214, 214, 214);
}
.small-avatar img {
  float: left;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

/**
 * Remove pop up
 * ======================================================================================================= *
 */
[class*="badge-"] {
  float: left;
  width: auto;
  /* min-width: 110px; */
  height: 25px;
  border: 2px solid #a846dc;
  border-radius: 3px;
  font-size: 0.85rem;
  line-height: 22px;
  padding: 0 10px;
  font-weight: 800;
  overflow: hidden;
  color: #a846dc;
}
[class*="badge-"] .badge-icon {
  float: left;
  margin-right: 10px;
  border: none;
}
.badge-highlight {
  background: #a846dc;
  color: #f1f1f1;
}
.badge-yellow {
  color: #ffc32a;
  border-color: #ffc32a;
}
.badge-red {
  color: #df0b4a;
  border-color: #df0b4a;
}
.badge-orange {
  color: #df7c0b;
  border-color: #df7c0b;
}
.badge-gray {
  color: #888888;
  border-color: #dadada;
}
.badge-auto {
  float: left;
  width: auto !important;
}

/**
 * Remove pop up
 * ======================================================================================================= *
 */
.btnremove-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  /* display: none; */
  background: rgba(255, 255, 255, 0.75);
  visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  transition: all 350ms ease;
  -o-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
}
.btnremove-popup.active {
  /* display: block; */
  visibility: visible;
  backface-visibility: visible;
  opacity: 1;
}
.btnremove-popup .wrapper {
  position: absolute;
  float: left;
  width: 300px;
  height: 200px;
  top: 10%;
  right: 50%;
  margin: -100px -150px;
  padding: 15px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);

  background: #ff0a53;
  border: 3px solid #df0b4a;
  border-radius: 5px;
  transition: all 350ms ease;
  -o-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
}
.btnremove-popup.active .wrapper {
  top: 30%;
}
.btnremove-popup .wrapper > .pop-title {
  float: left;
  width: 100%;
  font: 800 1.5rem "Ubuntu";
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.btnremove-popup .warning {
  float: left;
  width: 100%;
  font: 400 0.9rem "Ubuntu";
  text-align: justify;
  color: #fff;
  margin: 0 0 30px 0;
}
.btnremove-popup .wrapper .btback {
  float: left;
  width: calc(60% - 10px);
  line-height: 30px;
  text-align: center;
  font-size: 1rem;
  padding: 0px 10px;
  background: #fff;
  border: 2px solid #e9e9e9;
  border-radius: 3px;
  color: #afafaf;
  margin: 10px 0 0 0;
  text-transform: uppercase;
  font-weight: 800;
}
.btnremove-popup .wrapper .btback:hover {
  border: 2px solid #e9e9e9;
  color: #a846dc;
  cursor: pointer;
  background: #f9f9f9;
}
.btnremove-popup .wrapper .btn-remove {
  float: left;
  width: 40%;
  background: rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #fff !important;
  font-size: 0.9em;
}
.btnremove-popup .wrapper .btn-remove:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(0, 0, 0, 0.2);
}

/**
 * Warning of Account Canceled or Suspect
 * ======================================================================================================= *
 */

.warning-area {
  float: left;
  width: 100%;
  margin-top: -15px;
  padding: 15px;
  border: 2px solid #ff0a53;
  border-radius: 5px;
  margin-bottom: 20px;
}

.warning-area .warning-title {
  float: left;
  text-align: left;
  width: 100%;
  font: 800 1rem "Ubuntu";
  padding: 25px;
  color: #ff0a53;
}
.warning-area .btn-support {
  float: left;
  color: rgb(255, 255, 255);
  height: 35px;
  width: 250px;
  margin-left: 25px;
  cursor: pointer;
  background: #ff0a53;
  border-radius: 5px;
  padding: 0px 10px 0px 0px;
}
.warning-area .btn-support .icon {
  float: left;
  width: 35px;
  text-align: center;
  line-height: 37px;
  font-size: 1.2em;
}
.warning-area .btn-support .label {
  float: left;
  width: calc(100% - 35px);
  text-transform: uppercase;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  font: 800 0.8em/37px "Ubuntu";
  text-decoration: none;
  background: transparent;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}

/**
 * Date and time dropper plugins css
 * ======================================================================================================= *
 */
div.datedropper * {
  /* font-size: .9rem !important; */
}
div.datedropper {
  font-size: 1rem !important;
  border-radius: 10px !important;
  width: 160px !important;
}
div.datedropper .picker {
  border-radius: 10px !important;
  box-shadow: 0 0 40px 0px rgba(0, 0, 0, 0.14) !important;
}
div.datedropper .pick-l {
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}
div.datedropper:before,
div.datedropper .pick-submit,
div.datedropper .pick-lg-b .pick-sl:before,
div.datedropper .pick-m,
div.datedropper .pick-lg-h {
  background-color: #a846dc !important;
}
div.datedropper .pick-y.pick-jump,
div.datedropper .pick li span,
div.datedropper .pick-lg-b .pick-wke,
div.datedropper .pick-btn {
  color: #a846dc !important;
}
div.datedropper .picker,
div.datedropper .pick-l {
  background-color: #fff !important;
}
div.datedropper .picker,
div.datedropper .pick-arw,
div.datedropper .pick-l {
  color: #4d4d4d !important;
}
div.datedropper .pick-m,
div.datedropper .pick-m .pick-arw,
div.datedropper .pick-lg-h,
div.datedropper .pick-lg-b .pick-sl,
div.datedropper .pick-submit {
  color: #fff !important;
}
div.datedropper.picker-tiny:before,
div.datedropper.picker-tiny .pick-m {
  background-color: #fff !important;
}
div.datedropper.picker-tiny .pick-m,
div.datedropper.picker-tiny .pick-m .pick-arw {
  color: #4d4d4d !important;
}
div.datedropper.picker-lkd .pick-submit {
  background-color: #fff !important;
  color: #4d4d4d !important;
}

div.hopscotch-bubble {
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2), 0 0 100px rgba(0, 0, 0, 0.2);
}
.hopscotch-bubble-arrow-border {
  border-color: rgba(0, 0, 0, 0) !important;
}
div.hopscotch-bubble h3,
.hopscotch-title {
  font: 800 1.25rem "Ubuntu";
  color: #a846dc;
  padding-left: 10px;
}

div.hopscotch-bubble .hopscotch-content,
.hopscotch-content {
  font: 400 0.9rem "Ubuntu";
  color: #4d4d4d;
  padding-left: 10px;
}
div.hopscotch-bubble .hopscotch-bubble-number {
  float: left;
  padding: 0;
  background: #ffc32a;
  font: 800 1.2rem/30px "Ubuntu";
  color: #fff;
  text-align: center;
  border-radius: 50%;
}
div.hopscotch-bubble .hopscotch-nav-button.next {
  background: #a846dc !important;
  border: none;
  text-shadow: 0 0 0;
}
div.hopscotch-bubble .hopscotch-nav-button.prev,
div.hopscotch-bubble .hopscotch-nav-button.prev:hover {
  background: #fff;
  border: #f1f1f1;
  text-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

/**
 * FORM REMOVE
 * ======================================================================================================= *
 */
a.call-sumbit-reove {
  float: right;
  font: 800 0.9rem "Ubuntu";
  color: #ff0a53;
  text-decoration: none;
  border-bottom: 2px solid #ff0a53;
  text-transform: uppercase;
}
.form-remove {
  display: none;
}
.form-remove.active {
  display: block;
}
.input-content .submit-remove {
  color: #ff0a53;
  border-color: #ff0a53;
  background: #fff;
}
/**
 * FORM REMOVE
 * ======================================================================================================= *
 */
@media (max-width: 768px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: calc(100% - 10px);
  }
}

@media (max-width: 520px) {
}

/**
 * ======================================================================================================= *
 *  Folha de Estilhos
 * ======================================================================================================= *
 *  @author - Guilherme Aquinio <gui@aquino.ind.br> @aquino.pro
 *
 */
* {
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
a,
button {
  cursor: pointer;
}
body {
  background: #fff;
}
input[type="submit"] {
  appearance: none;
}
#content {
  min-height: 60vh;
}
ul,
ol {
  padding-left: 0;
  list-style: none;
}
p,
dl,
ul,
ol {
  margin: 0;
}

a,
button,
input[type="submit"] {
  cursor: pointer;
}
.only-mobile {
  display: none;
}
.only-desktop {
  display: block !important;
}

.submit-loading-block {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.15);
}

/**
 *  
 * ======================================================================================================= *
 */
.whatsapp {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  right: 0;
  text-decoration: none;
}
.whatsapp .cta {
  width: 180px;
  height: 40px;
  border-radius: 20px;
  background: #25d366;
  padding: 0 20px;
  font: 800 0.7em/40px "Ubuntu";
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 20px;
  margin-right: 20px;
}

.website .whatsapp .cta {
  width: 220px;
}
.whatsapp .cta .icon {
  float: left;
  font-size: 1.5rem;
  line-height: 40px;
  margin-right: 10px;
}
.whatsapp .cta-hover {
  float: left;
  display: none;
  position: absolute;
  width: 350px;
  height: 180px;
  bottom: 80px;
  right: 25px;
}
.whatsapp.active .cta-hover,
.whatsapp.active .cta-hover {
  display: block;
}
.whatsapp .cta-hover .close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}
.whatsapp.active .cta-hover .wrapper {
  float: left;
  width: 100%;
  padding-bottom: 15px;
}
.whatsapp .cta-hover .arrow {
  content: " ";
  position: absolute;
  float: left;
  bottom: 5px;
  right: 20px;
  width: 0;
  height: 0;
  z-index: 9999;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #fff;
}

.whatsapp .cta-hover .wrapper .message {
  float: left;
  width: 100%;
  border-radius: 10px 10px 0 0;
  background: #25d366;
  padding: 25px;
  font: 800 0.9em "Ubuntu";
  color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}
.whatsapp .cta-hover .wrapper .number {
  float: left;
  width: 100%;
  border-radius: 0 0 10px 10px;
  background: #fff;
  padding: 35px 25px 25px 25px;
  font: 800 0.9em "Ubuntu";
  color: #6c726e;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}
.whatsapp .cta-hover .wrapper .number .icon {
  float: left;
  width: 45px;
  height: 50px;
  font-size: 3rem;
  line-height: 30px;
  margin-top: -10px;
  color: #25d366;
}
.whatsapp .cta-hover .wrapper .number span {
  float: left;
  width: calc(100% - 50px);
  margin-left: 5px;
}

/**
 * Folha de Estilhos - Paginação
 * ======================================================================================================= *
 */
.pagination {
  float: left;
  width: 100%;
  margin-top: 20px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  border: 2px solid #ececec;
  background: #fff;
  font: 800 1em "Ubuntu";
  text-decoration: none;
  color: #a846dc;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  z-index: 3;
  color: #a846dc;
  border-color: #a846dc;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  z-index: 2;
  cursor: default;
  color: #a846dc;
  border-color: #a846dc;
}
.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
  cursor: not-allowed;
  color: #a846dc;
  border-color: #a846dc;
  opacity: 0.5;
}

/* font-family: 'Ubuntu', sans-serif; */

/**
 * FORM REMOVE
 * ======================================================================================================= *
 */
#messages-from-system {
  float: left;
  position: fixed;
  width: 380px;
  right: -400px;
  top: 30px;
  /* margin-left: -190px; */
  padding: 15px 15px 15px 15px;
  border-radius: 5px;
  font: 400 1.1rem "Ubuntu";
  z-index: 999999;
  transition: all 750ms ease;
  -o-transition: all 750ms ease;
  -ms-transition: all 750ms ease;
  -moz-transition: all 750ms ease;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}
#messages-from-system h3 {
  float: left;
  width: 100%;
  padding-right: 60px;
  margin-bottom: 10px;
  font: 800 1rem "Ubuntu";
}
#messages-from-system ul {
  float: left;
  width: 100%;
}
#messages-from-system ul li {
  font: 400 0.8rem "Ubuntu";
}
#messages-from-system ul li a {
  color: inherit;
  font-weight: bold;
}
#messages-from-system.message-success {
  background: rgb(25, 182, 103);
  border: 2px solid rgb(24, 139, 82);
  /* color: rgba(0, 0, 0, 0.4); */
  color: #fff;
}
#messages-from-system.message-error {
  background: crimson;
  color: #fff;
  border: 2px solid rgb(182, 17, 50);
}
#messages-from-system.active {
  right: 30px;
}
#messages-from-system a.close {
  float: left;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.05);
  font-size: 1em;
  cursor: pointer;
}
#messages-from-system * {
  list-style: none;
}

/**
 * ======================================================================================================= *
 */
.syspopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding-top: 150px;
  padding-bottom: 50px;
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
}
.syspopup.active {
  opacity: 1;
  visibility: visible;
  backface-visibility: visible;
}
.syspopup .wrapper {
  width: 500px;
  min-height: 590px;
  padding: 30px 50px 50px 50px;
  background: #fff;
  border-radius: 5px;
}
.syspopup.large .wrapper {
  width: 900px;
}
.syspopup .close,
.syspopup .wrapper .close {
  font: 800 0.9rem "Ubuntu", sans-serif;
  color: #f63e76;
  border-bottom: 3px solid #f63e76;
  float: right;
}
.syspopup .wrapper .section-title {
  padding: 0 0;
}
.syspopup .wrapper .message {
  float: left;
  width: 100%;
  color: #4d4d4d;
  font: 200 1rem/1.5rem "Ubuntu", sans-serif;
  padding: 0 0;
  margin: 15px 0;
}
.input-submit {
  appearance: none;
  -webkit-appearance: none;
}
.syspopup .wrapper .input-submit {
  width: 100%;
  text-align: center;
  line-height: 50px;
}
.syspopup .wrapper {
}

.adjust-height {
  height: 650px !important;
}

/**
 * ======================================================================================================= *
 */

.customareas .wrapper {
  position: relative;
}
.customareas.syspopup .close {
  top: -10px;
  right: -30px;
  position: relative;
}
.customareas .section-title {
  float: left;
  text-align: center;
}
.customareas header {
  width: 100%;
  float: left;
  padding: 10px;
  height: 50px;
  border: 2px solid #e9e9e9;
  border-radius: 50px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.customareas header a {
  text-transform: uppercase;
  font: 800 0.9rem "Ubuntu", sans-serif;
  color: #727272;
}
.customareas header a.active {
  color: #a846dc;
}
.customareas .areas {
  float: left;
  width: 100%;
}
.customareas .areas .area {
  display: none;
}
.customareas .areas .area.active {
  display: block;
}
.customareas .section-title {
  color: #727272;
}
.customareas .areas .area .areatitle {
  float: left;
  width: 100%;
  text-align: center;
  font: 800 0.9rem "Ubuntu", sans-serif;
  color: #a846dc;
}
.customareas .areas .area .areatitle small {
  float: left;
  width: 100%;
  font: 800 1.25rem "Ubuntu", sans-serif;
  /* color: #a846dc; */
}
.customareas .areas .area .label.default-cta {
  width: 80%;
  margin: 20px 10%;
}
.customareas .areas .area input[type="file"] {
  position: absolute;
  left: -2000%;
}
.customareas .areas .area .cropiegroup {
}
.customareas .areas .area .cropiegroup .config {
  display: none;
}
.customareas .areas .area .cropiegroup.active .config {
  display: block;
}
.customareas .areas .area .cropiegroup .croping {
  width: 100% !important;
  min-height: 10px !important;
}
.customareas .areas .area .cropiegroup .croping .buttons {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.customareas .areas .area .cropiegroup .croping .buttons .button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-right: 10px;
  border-radius: 30px;
  border: 2px solid #e9e9e9;
  text-align: center;
  text-transform: uppercase;
  font: 800 0.9rem "Ubuntu", sans-serif;
  color: #727272;
  background: none;
}
.customareas .areas .area .cropiegroup .croping .buttons .button.next {
  border: 2px solid #a846dc;
  color: #a846dc;
}

/**
 * ======================================================================================================= *
 */
.section-title {
  float: left;
  width: 100%;
  color: #a846dc;
  font: 200 1.5rem "Ubuntu", sans-serif;
  padding: 20px 0;
}

/**
 * ======================================================================================================= *
 */
.soon {
  float: left;
  position: absolute;
  width: 320px;
  height: auto;
  left: 50%;
  top: 50px;
  margin-left: -160px;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  padding: 25px;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.soon .logo {
  float: left;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0 20px;
}
.soon .logo.aquino {
  width: 80%;
  margin: 10px 10%;
}
.soon img {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
.soon h1 {
  float: left;
  width: 100%;
  font: 400 1.25em Helvetica;
  text-align: center;
  color: #2b2b2b;
  padding-top: 50px;
  padding-bottom: 30px;
}
.soon p {
  float: left;
  width: 100%;
  font: 400 1em Helvetica;
  text-align: center;
  color: #2b2b2b;
  padding: 20px 0;
}
.soon input[type="submit"],
.soon input[type="text"] {
  float: left;
  width: 100%;
  border: 2px solid #e7ebf0;
  padding: 0 10px;
  height: 50px;
  border-radius: 5px;
  background: #f9fbfd;
  font: 400 1rem/50px Helvetica;
  color: #636363;
  margin-bottom: 10px;
}
.soon input[type="submit"] {
  text-transform: uppercase;
  font-weight: 400;
  background: #4385f6;
  color: #fff;
  cursor: pointer;
}
.soon .tanks {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 120px 40px;
  background: #f9fbfd;
  font: 400 2em/50px Helvetica;
  color: #636363;
  opacity: 0;
  backface-visibility: hidden;
  visibility: hidden;
  transition: all 750ms ease;
  -o-transition: all 750ms ease;
  -ms-transition: all 750ms ease;
  -moz-transition: all 750ms ease;
}
.soon .tanks.show {
  opacity: 1;
  backface-visibility: visible;
  visibility: visible;
}

/**
 * ======================================================================================================= *
 */
.toggle-menu {
  display: none;
  position: fixed;
  right: 0px;
  top: 10px;
  width: 50px;
  height: 50px;
  color: #a846dc;
  line-height: 46px;
  font-size: 1.5em;
  border-radius: 50%;
  text-align: center;
  z-index: 9999999999;
  cursor: pointer;
}

/**
 * ======================================================================================================= *
 */
.welcome-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  padding: 50px 0;
  justify-content: center;
  align-items: center;
}
.welcome-message .popup {
  width: 100%;
  height: auto;
  max-width: 600px;
  background: #fff;
  padding: 30px 30px 60px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
}
.welcome-message .popup .video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 5px;
}
.welcome-message .popup .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.welcome-message .popup .logo {
  width: 100%;
}
.welcome-message .popup h1 {
  width: 100%;
  font: 800 1.5rem "Ubuntu", sans-serif;
  color: #a846dc;
  margin-top: 10px;
  margin-bottom: 10px;
}
.welcome-message .popup p {
  font: 400 1rem "Ubuntu", sans-serif;
  color: #707070;
  margin-bottom: 20px;
}
.welcome-message .popup .default-cta {
  margin-top: 10px;
}
.welcome-message .popup .default-support {
  background: #a846dc;
}
.welcome-message .popup .logo img {
  width: 300px;
}

/**
 * ======================================================================================================= *
 */
#appnav-toggle {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  visibility: hidden;
  backface-visibility: hidden;
  /* background: red; */
  /* z-index: 1; */
}
#appnav {
  float: left;
  position: fixed;
  width: 270px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fcfcfd;
  display: grid;
  align-items: center;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, .1); */
}
#appnav .customer-logo {
  float: left;
  width: 100%;
  height: 100px;
  background: #4385f6;
}
#appnav .avatar {
  position: relative;
  z-index: 9;
  float: left;
  width: 100%;
  height: 70px;
  padding: 0 30px;
}
#appnav .avatar .image {
  float: left;
  width: 70px;
  height: 70px;
}
#appnav .avatar .image img {
  float: left;
  width: 100%;
  border-radius: 50%;
}
#appnav .avatar .data {
  float: left;
  width: calc(100% - 70px);
  padding-left: 15px;
  padding-top: 15px;
}
#appnav .avatar .data .user-fullname {
  float: left;
  width: 100%;
  font: 800 1.25rem "Ubuntu", sans-serif;
  color: #a846dc;
}
#appnav .avatar .data .logout {
  float: left;
  width: 100%;
  text-transform: uppercase;
  font: 400 0.8rem "Ubuntu", sans-serif;
  color: #707070;
}
#appnav .odontopost-brand {
  float: left;
  width: 100%;
  height: 100px;
  padding: 0 25px;
  position: relative;
  z-index: 9;
}
#appnav .odontopost-brand img {
  float: left;
  width: 100%;
  opacity: 0.1;
  margin-bottom: 20px;
}
#appnav .odontopost-brand a {
  float: left;
  margin-left: 10px;
  text-transform: uppercase;
  font: 400 0.8rem "Ubuntu", sans-serif;
  color: #a0a0a0;
}
#appnav .menu {
  float: left;
  width: 100%;
  height: 500px;
}
#appnav .menu ul li {
  float: left;
  width: 100%;
  list-style: none;
  margin-bottom: 5px;
}
#appnav .menu ul li a:focus,
#appnav .menu ul li a:active,
#appnav .menu ul li a {
  float: left;
  position: relative;
  width: 100%;
  padding: 0 20px 0 40px;
}
#appnav .menu ul li a .icon {
  float: left;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  line-height: 40px;
  color: #a846dc;
  transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}
#appnav .menu ul li a .label {
  float: left;
  width: calc(100% - 40px);
  height: 40px;
  font: 400 1rem/40px "Ubuntu", sans-serif;
  color: #707070;
  transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}
#appnav .menu ul li a.bold .label {
  font-weight: bold;
  text-transform: uppercase;
}
#appnav .menu ul li a.active:before {
  content: "";
  width: 40px;
  height: 40px;
  left: -30px;
  background: #a846dc;
  border-radius: 15px;
  position: absolute;
}
#appnav .menu ul li a:hover .label,
#appnav .menu ul li a.active .label {
  color: #a846dc;
}
#appnav .menu ul li a.menu-highlight:hover .label,
#appnav .menu ul li a.menu-highlight .icon,
#appnav .menu ul li a.menu-highlight.active .label,
#appnav .menu ul li a.menu-highlight .label {
  color: #ffae00;
  font-weight: bold;
  /* background: none; */
}
#appnav .menu ul li a.menu-highlight:before {
  background: #ffae00;
}

#appcontent {
  float: left;
  position: relative;
  padding: 20px;
  padding-bottom: 150px;
  width: calc(100% - 270px);
  margin-left: 270px;
  height: auto;
}

.main-header {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.main-header .data {
  float: left;
  width: calc(100% - 250px);
}
.main-header .window-pretitle,
.main-header .window-title,
.main-header .window-paragraph {
  float: left;
  width: 100%;
  font: 400 0.6rem "Ubuntu", sans-serif;
  color: #707070;
}
.main-header .window-title {
  font: 800 1.15rem "Ubuntu", sans-serif;
  margin-bottom: 5px;
  color: #a846dc;
}
.main-header .window-paragraph {
  width: 80%;
  font: 400 0.9rem/1.15rem "Ubuntu", sans-serif;
}
.main-header .support {
  float: right;
  width: 250px;
  height: 40px;
}
.main-header .support a {
  float: right;
  width: 120px;
  font: 400 1rem/40px "Ubuntu", sans-serif;
  color: #707070;
}
.main-header .support a .icon {
  float: left;
  margin-right: 20px;
  font-size: 1.75rem;
  line-height: 40px;
  color: #a846dc;
}

.searchbar {
  position: fixed;
  width: calc(100% - 270px);
  top: -100px;
  left: 270px;
  z-index: 99;
  padding: 10px 40px;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}
.searchbar.fixed,
.searchbar.active {
  top: 0;
}
.searchbar .brand {
  float: left;
  width: 200px;
  padding-top: 10px;
  padding-right: 10px;
}
.searchbar .brand img {
  float: left;
  width: 100%;
}
.searchbar .post-filter {
  width: calc(100% - 200px);
}
.searchbar .type-filter {
  float: left;
  width: calc(100% - 80px);
}
.search-bar-padding-top {
  float: left;
  width: 100%;
  height: 80px;
}

.only-mobile .post-filter {
  float: left;
  width: calc(100% - 140px);
}
.only-mobile .text-filter {
  float: left !important;
  width: 100%;
  height: 45px !important;
  margin-top: 10px;
  padding: 0 !important;
  position: relative;
  color: #a846dc;
}
.only-mobile .text-filter input {
  padding: 0 30px 0 15px !important;
}
.only-mobile .text-filter .icon {
  position: absolute;
  right: 15px;
  top: 12px;
}
.search-metric {
  text-align: center;
  float: left;
  width: 45px;
  margin: 0 10px 0 3px;
  padding: 10px 0 0 0;
  font: 800 0.9rem "Ubuntu", sans-serif;
  color: #6b6b6b;
  text-align: center;
}
.only-mobile .search-metric {
  float: right;
  margin-right: 35px;
  padding: 15px 0;
}
.search-metric span:first-child {
  float: left;
  width: 100%;
  font: 800 0.65rem "Ubuntu", sans-serif;
  border-bottom: 1px solid #4d4d4d;
  padding-bottom: 3px;
}
.search-metric span:last-child {
  float: left;
  width: 100%;
  padding-top: 3px;
}

/**
 * ======================================================================================================= *
 */
.login-popup {
  float: left;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #a846dc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-popup .wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  width: 400px;
  height: auto;
  border-radius: 10px;
  background: #fff;
  padding: 40px;
}
.login-popup.signup .wrapper {
  width: 600px;
}
.login-popup header {
  margin-bottom: 30px;
}
.login-popup .wrapper .postitle,
.login-popup .wrapper .label,
.login-popup .wrapper .title {
  display: block;
  font: 200 2rem "Ubuntu", sans-serif;
  margin-bottom: 10px;
  color: #4d4d4d;
}
.login-popup .wrapper .postitle {
  font-size: 1rem;
  margin: 10px 0 0 0;
  color: #707070;
}
.login-popup .wrapper .label {
  font: 400 0.8rem "Ubuntu", sans-serif;
}
.login-popup .wrapper input {
  width: 100%;
  height: 50px;
  font: 200 1.1rem/50px "Ubuntu", sans-serif;
  border: none;
  border-bottom: 2px solid #e9e9e9;
  margin-bottom: 15px;
}
.login-popup .wrapper .warnning,
.login-popup .wrapper .cta-text {
  float: left;
  width: 50%;
  font: 400 0.8rem "Ubuntu", sans-serif;
  color: #636363;
  padding-top: 10px;
}
.login-popup footer {
  float: left;
  width: 100%;
  margin-top: 20px;
}
.login-popup .wrapper .warnning {
  width: 100%;
  font-size: 0.8rem;
  text-align: center;
  padding-top: 25px;
}
.login-popup.signup .warnning {
  width: 100%;
  float: left;
  padding: 25px 100px 0;
}
.login-popup .wrapper a {
  color: #a846dc;
  text-decoration: none;
}
.login-popup .wrapper button {
  float: right;
  width: 40%;
  height: 50px;
  border-radius: 25px;
  border: none;
  font: 200 1.1rem/50px "Ubuntu", sans-serif;
  text-align: center;
  color: #fff;
  background: #a846dc;
  cursor: pointer;
}
.forgot {
  position: absolute;
  float: left;
  width: 100%;
  left: 0;
  text-align: center;
  top: calc(100% + 20px);
  color: #fff !important;
  font: 800 0.9rem "Ubuntu", sans-serif;
}
.forgot a {
  float: left;
  width: 100%;
  margin-bottom: 15px;
  color: #fff !important;
  font: 800 1.1rem "Ubuntu", sans-serif;
}
.forgot a small {
  float: left;
  width: 100%;
  font: 800 0.7em "Ubuntu", sans-serif;
}
.verify-input .code-input {
  position: relative;
  float: left;
  width: 100%;
  border-radius: 4px;
  height: 60px;
  margin-bottom: 15px;
}
.verify-input .code-input input {
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 15px;
  width: calc(100% + 100px);
  height: 60px;
  border: none;
  font-size: 1.75rem;
  z-index: 9;
  background: transparent;
  color: transparent;
  letter-spacing: 40px;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 0 #a846dc;
}

.verify-input .code-input input:focus {
  outline: none;
}

.verify-input .code-input .fakeinputs {
  position: absolute;
  width: 100%;
  height: 60px;
  display: flex;
  left: 0;
  top: 0;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.verify-input .code-input .fakeinputs .fakeinput {
  position: relative;
  flex: 1;
  margin-right: 10px;
  height: 60px;
  border-radius: 5px;
  border: 2px solid #ccc;
}
.verify-input .code-input .fakeinputs .fakeinput:last-child {
  margin-right: 0;
}
.login-popup.verify .wrapper button {
  width: 100%;
}
/* 
@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.verify-input .fakeinput:before {
  width: 30px;
  height: 3px;
  top: 50px;
  left: 7px;
  background: #ccc;
  border-radius: 5px;
  position: absolute;
  content: " ";
  z-index: 9;
  opacity: 1;
}
.verify-input .fakeinput:before {
  -webkit-animation: pulse 1s infinite ease-in-out;
  -o-animation: pulse 1s infinite ease-in-out;
  -ms-animation: pulse 1s infinite ease-in-out;
  -moz-animation: pulse 1s infinite ease-in-out;
  animation: pulse 1s infinite ease-in-out;
} */

/**
 * ======================================================================================================= *
 */
.available-bank-slip,
.trial-warning {
  float: left;
  padding: 10px;
  margin-bottom: 50px;
  border-radius: 3px;
  font: 400 1rem "Ubuntu", sans-serif;
  color: #fff;
  background: #fd5608;
  border: 2px solid #e6520e;
  transition: all 750ms ease;
  -o-transition: all 750ms ease;
  -ms-transition: all 750ms ease;
  -moz-transition: all 750ms ease;
}
.available-bank-slip {
  background: #fff693;
  border-color: #fff693;
  text-decoration: none;
  color: #938b4f;
  padding: 25px;
  display: none;
}
.available-bank-slip.active {
  display: flex;
}
.trial-warning:hover {
  color: #fff;
  background: #0cbd79;
  border: 2px solid #099e65;
}
.trial-warning-red,
.trial-warning-red:hover {
  background: #d30b47;
  border: 2px solid #c40a42;
}

.trial-warning input {
  float: right;
  border: none;
  font-weight: 800;
  text-align: right;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  background: transparent;
}
.available-bank-slip div {
  max-width: 150px;
  min-width: 150px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.available-bank-slip u {
  margin-top: 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.available-bank-slip input {
  width: 100%;
  text-align: center;
  color: #938b4f;
  border: 2px solid #938b4f;
  border-radius: 4px;
  padding: 10px 0;
  font-size: 14px;
  background: transparent;
}

/**
 * ======================================================================================================= *
 */
.category-list {
  float: left;
  width: 100%;
}
.category-list .group {
  float: left;
  width: 100%;
}
.category-list .letter {
  float: left;
  width: 100%;
  font: 800 1.75rem "Ubuntu", sans-serif;
  color: #a846dc;
  margin-bottom: 20px;
}
.category-list .items {
  float: left;
  width: 100%;
  height: 110px;
  margin-bottom: 10px;
  overflow: hidden;
  overflow-x: auto;
}
.category-list .items .items-wrapper {
  float: left;
  width: 200%;
  /* background: red; */
}
.category-list .items .item {
  float: left;
  position: relative;
  width: 150px;
  height: 90px;
  border-radius: 7px;
  overflow: hidden;
  margin-right: 10px;
}
.category-list .items .item:last-child {
  margin-right: 0;
}
.category-list .items .item .data,
.category-list .items .item .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}
.category-list .items .item:hover .background {
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
}
.category-list .items .item .data {
  padding: 25px 10px;
  background: rgba(0, 0, 0, 0.3);
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}
.category-list .items .item .count,
.category-list .items .item .title {
  float: left;
  width: 100%;
  font: 800 0.7rem "Ubuntu", sans-serif;
  color: #ffff;
}
.category-list .items .item .title {
  font: 800 0.95rem/0.9rem "Ubuntu", sans-serif;
}

/**
 * ======================================================================================================= *
 */
.post-filter {
  float: left;
  width: 100%;
}
.post-filter .type-filter label {
  position: relative;
  float: left;
  width: 50%;
  height: 50px;
  background: #f5f5f5;
  font: 400 0.9rem/50px "Ubuntu", sans-serif;
  text-decoration: none;
  text-align: center;
  color: #a846dc;
  cursor: pointer;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}
.post-filter .type-filter label input {
  opacity: 0;
}
.post-filter .type-filter label:first-child {
  border-radius: 35px 0 0 35px;
}
.post-filter .type-filter label:last-child {
  border-radius: 0 35px 35px 0;
}
.post-filter .type-filter label:first-child:after {
  content: "";
  width: 2px;
  right: -1px;
  height: 25px;
  margin-top: 15px;
  background: #a846dc;
  position: absolute;
  z-index: 2;
}
.post-filter .type-filter label.active,
.post-filter .type-filter label:hover {
  color: #f9f9f9;
  background: #a846dc;
}
.searchbox form,
.post-filter .text-filter {
  float: left;
  position: relative;
  height: 50px;
  background: #f5f5f5;
  border-radius: 35px;
}
.searchbox form {
  width: 100%;
}
.searchbox input,
.post-filter .text-filter input {
  position: absolute;
  width: 100%;
  height: 50px;
  font: 400 0.9rem/50px "Ubuntu", sans-serif;
  color: #a846dc;
  padding: 0 160px 0 30px;
  background: transparent;
  border: none;
  -webkit-appearance: none;
}
.searchbox button,
.post-filter .text-filter button {
  float: left;
  position: absolute;
  top: 10px;
  right: 10px;
  height: 30px;
  width: 120px;
  border: none;
  border-radius: 20px;
  text-transform: uppercase;
  text-align: center;
  font: 4 00 0.8rem/31px "Ubuntu", sans-serif;
  color: #f5f5f5;
  background: #a846dc;
  -webkit-appearance: none;
}

.post-filter .text-filter button.icon-submit {
  background: transparent;
  color: #a846dc;
  font-size: 1rem;
  top: 0;
  right: 0;
  width: 60px;
  height: 45px;
  border-radius: 50%;
  z-index: 999;
}

/**
 * ======================================================================================================= *
 */
.searchbox {
  position: relative;
  float: left;
  width: 100%;
  height: 200px;
  background: #a846dc;
  border-radius: 10px;
  padding: 60px 15%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../image/website/searchbox.jpeg");
}

/**
 * ======================================================================================================= *
 */
.smalltitle {
  float: left;
  font: 400 0.8rem "Ubuntu", sans-serif;
  color: #707070;
}
.metric-list {
  float: left;
}
.metric {
  float: left;
  width: calc((100% - 40px) / 5);
  border-radius: 5px;
  background: #f9f9f9;
  border: 1px solid #f1f1f1;
  padding: 15px;
  margin-right: 10px;
}
.metric:nth-child(5n-5) {
  margin-right: 0;
}
.metric .display {
  float: left;
  width: 100%;
  font: 800 2.5rem/1.5rem "Ubuntu", sans-serif;
  color: #a846dc;
  margin-top: 10px;
}
.metric .title {
  float: left;
  width: 100%;
  font: 400 0.7rem/0.9rem "Ubuntu", sans-serif;
  color: #a846dc;
}

/**
 * ======================================================================================================= *
 */

.cancel-account {
  float: left;
  background-color: #f9f9f9;
  width: calc(100% - 210px);
  margin: 20px 105px;
  height: auto;
  text-align: center;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.cancel-account p {
  font: 400 1rem "Ubuntu", sans-serif;
  color: #707070;
}

.cancel-account .title {
  float: left;
  width: 100%;
  text-align: center;
}

.cancel-account .title h2 {
  width: 100%;
}

.cancel-account .button-wrapper {
  display: flex;
  width: 100%;
  padding-top: 20px;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.cancel-account .button-back,
.cancel-account .button-cancel {
  float: none;
  width: 280px;
  height: 50px;
  background: #a846dc;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font: 400 1rem/50px "Ubuntu", sans-serif;
}
.cancel-account .button-back {
  margin-right: 10px;
}

.cancel-account .button-cancel {
  background-color: transparent;
  color: #c0c0c0;
  border: 2px solid #c0c0c0;
}

/**
 * ======================================================================================================= *
 */
.post-list {
  float: left;
  width: 100%;
  margin: 0 auto;
}
.post-list .post-item {
  position: relative;
  float: left;
  width: calc((100% - 45px) / 4);
  margin-right: 15px;
  margin-bottom: 15px;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;

  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    linear-gradient(to right, black 50%, white 50%),
    linear-gradient(to bottom, black 50%, white 50%);
  background-blend-mode: normal, difference, normal;
  background-size: 20px;
}
.post-list .post-item:nth-child(4n-4) {
  margin-right: 0;
}
.post-list .post-item:active,
.post-list .post-item:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}
.post-list .post-item .image {
  position: relative;
  float: left;
  width: 100%;
  height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.post-list .post-item .customer-brand {
  position: absolute;
  float: left;
  right: 0;
  bottom: 0;
  background-image: url("../image/website/seu-logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.post-list .post-item .story-warnning {
  display: none;
  position: absolute;
  left: 10%;
  bottom: 15px;
  width: 80%;
  background: rgba(0, 0, 0, 0.75);
  padding: 10px;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  font: 400 0.9rem/1em "Ubuntu", sans-serif;
}
.post-list .post-item .story-warnning span {
  float: left;
  width: 100%;
  margin-top: 5px;
  font: 400 0.5rem/1em "Ubuntu", sans-serif;
}
.post-list .post-item:hover .story-warnning {
  background: rgba(0, 0, 0, 0.25);
}
.post-list .post-item .story-image .customer-brand {
  display: none;
}
.post-list .post-item .story-warnning {
  display: block;
}

.post-download .marcadagua,
.post-list .post-item .image .marcadagua {
  position: absolute;
  float: left;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-image: url("../image/website/marcadagua.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.post-list .post-item .image.feed-image {
  padding-top: 100%;
}
.post-list .post-item .data {
  width: 100%;
  position: absolute;
  float: left;
  padding: 0 15px;
  z-index: 2;
}
.post-list .post-item .data .like {
  float: left;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.post-list .post-item .hasotions .icon,
.post-list .post-item .data .like .icon {
  color: #a846dc;
  margin-top: 10px;
  font-size: 30px;
  text-align: right;
}
.post-list .post-item .hasotions {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.post-list .data .like .check-download {
  float: left;
  height: 25px;
  width: 90px;
  margin-top: 10px;
  background-color: #15da8e;
  color: #fff;
  font: 800 0.7rem/27px "Ubuntu", sans-serif;
  text-transform: uppercase;
  border-radius: 25px;
}
.post-list .data .check-download .check-icon {
  float: left;
  font-size: 15px;
  line-height: 25px;
  margin: 0 7px;
  text-align: center;
}
.like .icon.solid {
  display: none;
}
.like.active .icon.outline {
  display: none;
}
.like.active .icon.solid {
  display: block;
}
.post-list .post-item .last-download {
  float: left;
  width: 100%;
  height: auto;
  padding-left: 10px;
  background: #fff;
}

.post-list .post-item .last-download p {
  float: left;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font: 800 0.7rem "Ubuntu", sans-serif;
  color: #b75be9;
  text-transform: uppercase;
  /* background-color: red; */
}

.post-list .post-item .data .last-download p b {
  float: left;
  width: 100%;
  font-size: 0.9rem;
}

.resumed_tags {
  float: left;
  width: calc(100% - 40px);
  padding-left: 10px;
  font: 400 0.8rem "Ubuntu", sans-serif;
  color: rgb(124, 124, 124);
  /* color: red; */
}
.post-list .post-item .data .description {
  float: left;
  width: 100%;
  margin-top: 15px;
  font: 400 0.9rem/1.25rem "Ubuntu", sans-serif;
  color: #5f5f5f;
}

.post-list .post-item .data .cta-download {
  float: left;
  width: calc(100% - 60px);
  margin: 8px 0 0 10px;
  height: 30px;
  border-radius: 18px;
  background: #a846dc;
  color: #fff;
  font: 400 0.8rem/30px "Ubuntu", sans-serif;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}
.cta-download .icon {
  width: 20px;
  float: left;
}
.post-list .post-item .data .cta-download .text {
  padding-left: 10px;
}

/**
 * ======================================================================================================= *
 */
.post-download {
  float: left;
  width: 100%;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #ddd;
}
.post-download > section {
  display: flex;
  width: 100%;
}
.post-download .image-wrapper {
  flex: 1;
}
.post-download .image-wrapper .image {
  position: relative;
  float: left;
  width: 100%;
  height: 0;
}
.post-download .image-wrapper .image .imgbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;

  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}
.post-download .image-wrapper .image .imgbg.active {
  opacity: 1;
}
.post-download .image-wrapper .options-select {
  float: left;
  width: 100%;
  display: flex;
}
.post-download .image-wrapper .options-select .option {
  flex: 1;
  margin-top: 10px;
  border: 2px solid #e9e9e9;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 5px;

  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}
.post-download .image-wrapper .options-select .single-option {
  min-width: 100px;
  max-width: 100px;
}
.post-download .image-wrapper .options-select .option:hover {
  border: 2px solid #ac25e3;
}
.post-download .image-wrapper .options-select .option:last-child {
  margin-right: 0;
}
.post-download .image-wrapper .options-select .option img {
  float: left;
  width: 100%;
}
.post-download .image-wrapper .options-select .warning {
  flex: 1;
  display: flex;
  margin-top: 10px;
  padding: 15px;
  border: 2px solid #e9e9e9;
  border-radius: 4px;
  text-align: center;
  justify-content: center;
  align-items: center;
  font: 800 0.9rem "Ubuntu", sans-serif;
  color: #dc4669;
}
.post-download .image-wrapper .feed-image {
  padding-top: 100%;
}
.post-download .image-wrapper .image.story-image {
  padding-top: calc(16 / 9 * 100%);
}
.post-download .image .customer-brand {
  position: absolute;
  right: 0;
  bottom: 0;
  /* background-color: #dc4669; */
  float: left;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
}
.post-download .image .customer-brand.customarea {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: -1;
  background: url("../image/website/custom-pattenr.png") repeat;
  background-size: 20px 20px;
  color: #a846dc;
  font: 800 1rem "Ubuntu", sans-serif;
  text-shadow: 0 0 2px rgba(255, 255, 255, 1);
}

.post-download .data {
  flex: 1;
  padding-right: 15%;
  padding-left: 20px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-evenly; */
}
.post-download .data .like {
  float: left;
  width: 40px;
  height: 40px;
}
.post-download .data .like .icon {
  color: #a846dc;
  margin-top: 5px;
  font-size: 30px;
  text-align: center;
}
.post-download .data .tags {
  float: left;
  width: calc(100% - 40px);
  padding-left: 10px;
  padding-top: 10px;
  font: 400 0.8rem "Ubuntu", sans-serif;
  color: rgb(124, 124, 124);
}
.post-download .data .title-description {
  font: 800 0.9rem/1.25rem "Ubuntu", sans-serif !important;
  color: #a846dc;
  margin-bottom: 10px;
}
.post-download .data .description {
  float: left;
  width: 100%;
  margin-top: 15px;
  font: 400 0.9rem/1.25rem "Ubuntu", sans-serif !important;
  color: #5f5f5f;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  border: 2px solid #f1f1f1;
}

.post-download .information {
  font: 400 1rem/1.25rem "Ubuntu", sans-serif !important;
  color: #707070;
  margin-bottom: 10px;
}

#button-copy,
.post-download .buttons {
  width: 100%;
  display: none;
  flex-direction: column;
}
#button-copy.active,
.post-download .buttons.active {
  display: flex;
  flex-direction: column;
}
.post-download .data .cta-download {
  display: none;
  width: 300px;
  height: 50px;
  border-radius: 25px;
  margin: 10px 0 0 0;
  background: #a846dc;
  color: #fff;
  font: 400 0.9rem/50px "Ubuntu", sans-serif;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}
.post-download .cta-download.active {
  display: inline-block;
}
.post-download .cta-download.copy-text {
  background: #4385f6;
  border: 2px solid #3c7ae4;
  color: #fff;
}
.post-download .cta-download.new-render {
  background: transparent;
  border: 2px solid #c0c0c0;
  color: #7e7e7e;
}
.post-download .cta-download.new-render:active,
.post-download .cta-download.new-render:hover {
  border-color: #a846dc;
  color: #a846dc;
}
.post-download .cta-download .icon {
  width: 20px;
  float: left;
}
.post-download .data .cta-download .text {
  padding-left: 10px;
}
.post-download .data .download-cta-warnning {
  float: left;
  width: 100%;
  max-width: 600px;
  margin: 40px 0 15px 0;
  font: 400 0.9rem/1.25rem "Ubuntu", sans-serif;
  border: 1px solid #e9e9e9;
  padding: 20px;
  color: #707070;
}
.download-cta-warnning .icon {
  color: #dc4669;
  font-size: 1rem;
  margin-right: 3px;
}
.download-cta-warnning span {
  margin-top: 10px;
  text-align: justify;
  font: 400 0.9rem/1.25rem "Ubuntu", sans-serif !important;
  color: #707070 !important;
}

/**
 * ======================================================================================================= *
 */

.plans-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-content: center;
  align-items: center;
}
.page-plans .page-title {
  margin-bottom: 60px;
}
.tabs-header {
  height: 80px;
  width: 600px;
  padding: 10px;
  border-radius: 50px;
  background: #e9e9e9;
  display: flex;
}
.tabs-header .tab-menu-item {
  flex: 1;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  font: 400 1rem/60px "Ubuntu", sans-serif;
  border-radius: 30px;
  color: #727272;
  background: transparent;

  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}
.tabs-header .tab-menu-item.active {
  background: #099e65;
  color: #fff;
}
.tabs-header .tab-menu-item .disccount-badge {
  position: absolute;
  top: -30px;
  right: 50%;
  margin-right: -22.5px;
  text-align: center;
  text-transform: uppercase;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font: 800 0.9rem/45px "Ubuntu", sans-serif;
  background: #ffae00;
  color: #fff !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.tabs-header .tab-menu-item .disccount-badge span {
  width: 100%;
  float: left;
}
.next-invoice {
  float: left;
  width: 100%;
  max-width: 300px;
  margin: 10px calc((100% - 360px) / 2);
  font: 800 0.9rem "Ubuntu", sans-serif;
  background: #ffae00;
  color: #3a2801;
  text-align: center;
  padding: 7px 10px;
  border-radius: 3px;
}
.plan-tabs .tab {
  display: none;
  opacity: 0;

  transition: all 100ms ease;
  -o-transition: all 100ms ease;
  -ms-transition: all 100ms ease;
  -moz-transition: all 100ms ease;
}

.plan-tabs .tab.active {
  display: block;
  opacity: 1;
}

.page-plans {
  float: left;
  width: 100%;
}
.page-plans .group {
  position: relative;
  width: 100%;
  margin-top: 30px;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-plans .plan {
  width: 300px;
  min-height: 350px;
  background: #fff;
  padding: 50px 25px;
  border-radius: 5px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-right: 20px;
  border: 2px solid #f9f9f9;
  transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}
.page-plans .plan:active,
.page-plans .plan:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
}

.page-plans .plan:nth-child(2),
.page-plans .plan.highlight {
  width: 350px;
  min-height: 500px;
  z-index: 99;
  border: 2px solid #ffae00;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}
.page-plans .plan.active {
  border: 2px solid #a846dc;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}
.page-plans .plan .badge {
  text-align: center;
  text-transform: uppercase;
  width: 80%;
  margin: 0 10% 10px 10%;
  padding: 7px 5px;
  border-radius: 3px;
  font: 800 1rem "Ubuntu", sans-serif;
  border: 2px solid #ffae00;
  color: #ffae00;
}
.page-plans .plan .title {
  text-align: center;
  font: 800 1.75rem "Ubuntu", sans-serif;
  text-transform: uppercase;
  color: #a846dc;
  margin-bottom: 20px;
}
.page-plans .plan .price {
  width: 100%;
  text-align: center;
  font: 800 1rem "Ubuntu", sans-serif;
  color: #727272;
}
.page-plans .plan .credit {
  margin-top: 10px;
  font: 800 1.5rem/1rem "Ubuntu", sans-serif;
  color: #727272;
}
.page-plans .plan .credit small {
  display: block;
  width: 100%;
  text-align: center;
  font: 800 0.9rem "Ubuntu", sans-serif;
}

.page-plans .plan .resume {
  font: 400 0.9rem "Ubuntu", sans-serif;
  text-align: center;
  color: #727272;
  margin: 40px 0;
}
.hidden-button,
.page-plans .plan .button input[type="radio"] {
  opacity: 0;
  position: absolute;
}
.page-plans .plan .features {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.page-plans .plan .features li {
  float: left;
  width: 100%;
  margin-bottom: 3px;
  font: 400 0.9rem "Ubuntu", sans-serif;
  color: #727272;
}
.page-plans .plan .features li .icon {
  float: left;
  margin-right: 5px;
  font-size: 1rem;
  color: #099e65;
}
.page-plans .plan .button,
.page-plans .plan button {
  cursor: pointer;
  float: left;
  width: 100%;
  padding: 20px;
  border: 0;
  border-radius: 5px;
  text-align: center;
  background: #a846dc;
  font: 400 0.9rem "Ubuntu", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  /* transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-moz-transition: all 500ms ease; */
}
.page-plans .plan button:active,
.page-plans .plan button:hover {
  background: #b75be9;
}
.page-plans .plan:nth-child(2) .title,
.page-plans .plan.highlight .title {
  color: #ffae00;
}
.page-plans .plan:nth-child(2) .cta-signup,
.page-plans .plan.highlight .cta-signup {
  background: #ffae00;
}

.page-plans .toggle-automation {
  display: inline-block;
  width: 70%;
  margin: 10px 15%;
}
.page-plans .toggle-title {
  width: 100%;
  display: block;
  font: 800 0.9rem "Ubuntu", sans-serif;
  text-align: center;
  color: #a846dc;
}
.page-plans .toggle {
  width: 100%;
  margin-top: 10px;
  height: 30px;
  border-radius: 15px;
  border: 2px solid #e9e9e9;
}
.page-plans .toggle label {
  float: left;
  width: 50%;
  color: #707070;
  font: 800 0.9rem/26px "Ubuntu", sans-serif;
  text-transform: uppercase;
  padding-left: 10px;
}
.page-plans .toggle label:nth-child(even) {
  text-align: right;
  padding-right: 10px;
  padding-left: 0;
}
.page-plans .toggle label input {
  float: left;
  margin-top: 8px;
  margin-right: 10px;
}
.page-plans .toggle label:nth-child(even) input {
  float: right;
  margin-left: 10px;
  margin-right: 0;
}
.plans .plan .credit {
  font: 800 1.5rem/1.5rem "Ubuntu", sans-serif;
}
.plan .warnning {
  float: left;
  width: 100%;
  margin-top: 15px;
  text-align: center;

  font: 400 0.8rem/0.9rem "Ubuntu", sans-serif;
  color: #707070;
}
.plan .warnning b {
  text-transform: lowercase;
}

/**
 * CROPIEE
 * ======================================================================================================= *
 */
.secure {
  float: left;
  width: 220px;
  margin: 10px calc((100% - 220px) / 2) 0;
  text-transform: uppercase;
  text-align: center;
  font: 400 0.9rem/1rem "Ubuntu", sans-serif;
  color: #0cbd79;
}
.secure b {
  font: 800 1rem/1rem "Ubuntu", sans-serif;
  color: #0cbd79;
}
.secure .icon {
  float: left;
  width: 20px;
  font-size: 1.5rem;
  text-align: center;
  height: 20px;
  line-height: 30px;
  margin-right: 10px;
}

/**
 * CROPIEE
 * ======================================================================================================= *
 */
.logo-form {
  width: 500px;
  margin: 0 auto;
}
.crop-image .info {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  font: 400 0.9rem/1.25rem "Ubuntu", sans-serif !important;
  color: #5f5f5f;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  border: 2px solid #f1f1f1;
}
.crop-image .info header {
  font: 400 1rem/25px "Ubuntu", sans-serif !important;
  color: #f63e76;
}
.crop-image .info ul {
  float: left;
  width: 100%;
  margin: 15px 0;
}
.crop-image .info ul li {
}
.crop-image .info ul li .icon {
  float: left;
  margin-right: 5px;
  color: #099e65;
}
.crop-image .info header .icon {
  float: left;
  margin-right: 5px;
  font-size: 1.5rem;
}

.crop-image .help {
  float: left;
  width: 70%;
  margin: 0 15%;
  border-radius: 30px;
  font: 800 0.8rem/0.9rem "Ubuntu";
  text-decoration: none;
  text-align: center;
  color: #2b2b2b;
  padding: 10px 20px;
  background: #ffae00;
}
.crop-image {
  float: left;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.crop-wrap {
  float: left;
  width: 100%;
  height: auto;
  min-height: 480px;
}
.croping {
  float: left;
  width: 500px;
  height: auto;
  min-height: 450px;
  background: #fff;
}
.crop-image .label {
  float: left;
  width: 100%;
  height: 50px;
  background: #a846dc;
  margin-bottom: 30px;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;

  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}
.crop-image .label span {
  position: absolute;
  float: left;
  width: 100%;
  height: 40px;
  color: #fff;
  text-transform: uppercase;
  font: 800 0.9rem/40px "Ubuntu";
}
.crop-image .label input {
  margin-top: -200%;
}

/**
 * ======================================================================================================= *
 */
.default-form .input-group {
  float: left;
  display: flex;
  width: 100%;
  height: 40px;
  border-radius: 25px;
  background: #f2f2f2;
  padding: 0 30px;
  margin-bottom: 10px;
  position: relative;
}
.default-form .input-group.active {
  display: flex !important;
}
.default-form .input-group.textarea-group {
  height: 200px;
}
.default-form .input-group .label {
  width: 150px;
  max-width: 150px;
  color: rgb(119, 119, 119);
  text-transform: uppercase;
  font: 800 0.65rem/40px "Ubuntu";
}
.defaultp {
  float: left;
  color: rgb(61, 61, 61);
  font: 400 1rem "Ubuntu";
}
.default-form .input-group select,
.default-form .input-group textarea,
.default-form .input-group input {
  flex: 1;
  height: 40px;
  border: none;
  background: transparent;
  font: 400 0.9rem/40px "Ubuntu";
  width: calc(100% - 150px);
  color: #a846dc;
  -webkit-appearance: none;
}
.default-form .input-group select {
  position: absolute;
  left: 160px;
  padding-left: 20px;
  width: calc(100% - 200px);
}
.default-form .input-group textarea {
  height: 200px;
  font: 400 1rem/1.25rem "Ubuntu";
  padding: 15px 0;
}
.default-form .input-group select:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;

  border-top: 20px solid #f00;
}

.default-form .input-group .icon {
  float: left;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 5px;
  top: 15px;
  color: rgb(119, 119, 119);
}
.default-form .title {
  font: 400 1rem "Ubuntu";
  margin-top: 20px;
  margin-bottom: 20px;
  color: rgb(155, 155, 155);
}

.input-submit {
  float: right;
  width: 300px;
  height: 50px;
  border-radius: 25px;
  border: none;
  margin: 0 auto;
  color: #fff;
  background: #a846dc;
  text-transform: uppercase;
  font: 800 0.9rem/40px "Ubuntu";
  margin-top: 20px;
}
.logo-form .input-submit {
  float: left;
  width: 80%;
  margin: 0 10%;
}
.logo-form .instructions {
  float: left;
  width: 100%;
  text-align: center;
  font: 800 0.9rem "Ubuntu";
  margin-top: -15px;
  padding-bottom: 20px;
}

.rounded-button {
  float: right;
  width: 300px;
  height: 50px;
  border-radius: 25px;
  border: none;
  margin: 0 auto;
  color: #a846dc;
  text-align: center;
  text-decoration: none;
  border: 2px solid #a846dc;
  text-transform: uppercase;
  font: 800 0.9rem/46px "Ubuntu";
  margin-top: 20px;
  margin-left: 20px;
}
.rounded-button.red {
  color: #dc4669;
  border: 2px solid #dc4669;
}

.input-radio-group {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.input-cro-radio-group label {
  float: left;
  width: calc((100% - 10px) / 2);

  border: 2px solid #e9e9e9;
  border-radius: 10px;
  padding: 20px;
}
.input-cro-radio-group label:first-child {
  margin-right: 10px;
}
.input-cro-radio-group label .image {
  float: left;
  width: 100%;
  padding-top: 100%;
  background: #e9e9e9;
  border-radius: 5px;
  margin-bottom: 5px;
  background-size: cover;
}
.input-cro-radio-group label input {
  float: left;
  width: 20px;
  margin-top: 5px;
}
.input-cro-radio-group label span {
  float: left;
  width: calc(100% - 20px);
  margin-top: 3px;
  font: 800 0.9rem "Ubuntu";
}

/**
 * user list css
 * ======================================================================================================= *
 */
.method-list {
  float: left;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  list-style: none;
}
.method-item {
  position: relative;
  float: left;
  height: 180px;
  margin-right: 20px;
  margin-bottom: 20px;
  width: 320px;
  padding: 40px;
  border-radius: 10px;
  background: #ac25e3;
  color: #fff;
  border: 1px solid #e9e9e9;
  overflow: hidden;
}
.method-item > .icon {
  float: left;
  width: 40px;
  height: 40px;
  opacity: 0.5;
}
.method-item .options {
  float: left;
  height: 40px;
  width: calc(100% - 40px);
}
.method-item .options .default {
  float: right;
  padding: 7px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.15);
  color: #c6b7eb;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
}
.method-item .card-number {
  float: left;
  width: 100%;
  height: 50px;
  font: 800 1.2rem/40px "Ubuntu";
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.method-item .card-number small {
  letter-spacing: 0px;
}
.method-item .card-expire,
.method-item .card-name {
  float: left;
  width: 50%;
  font-size: 1rem;
  text-transform: uppercase;
}
.method-item .card-expire {
  text-align: right;
}
.method-item .card-options-menu {
  position: absolute;
  opacity: 0;
  backface-visibility: hidden;
  visibility: hidden;
  top: -100px;
  left: 0;
  float: left;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #f9f9f9;
  background: #9418c5;
  overflow: hidden;
  transition: all 450ms ease;
  -o-transition: all 450ms ease;
  -ms-transition: all 450ms ease;
  -moz-transition: all 450ms ease;
}
.method-item .card-options-menu.active {
  top: 0;
  opacity: 1;
  backface-visibility: visible;
  visibility: visible;
}
.method-item .card-options-menu button,
.method-item .card-options-menu a {
  float: left;
  width: 100%;
  height: 90px;
  text-align: center;
  border: 0;
  line-height: 90px;
  font: 800 0.85em/90px "Ubuntu";
  text-transform: uppercase;
  cursor: pointer;
}
.method-item .card-options-menu button {
  background: transparent;
  color: #fff;
}
.method-item .card-options-menu button.remove,
.method-item .card-options-menu a {
  background: #d30b47;
}
.method-item .card-options-menu button:hover {
  background: #9418c5;
}
.method-item .card-options-menu button.remove:hover,
.method-item .card-options-menu a:hover {
  background: #e90a4d;
}

.method-item-add {
  float: left;
  height: 180px;
  width: 200px;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  color: #25d366;
  border: 2px solid #25d366;
  text-align: center;
  cursor: pointer;
}
.method-item-add .icon {
  font-size: 3rem;
  height: 100px;
  line-height: 100px;
}
.method-item-add span {
  float: left;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 10px;
  border-radius: 5px;
  background: #25d366;
}

/**
 * ======================================================================================================= *
 */
.account {
}
.logo-form {
}
.logo-form {
}

/**
 * SUMO SELECT CONFIG
 * ======================================================================================================= *
 */
.faq-list {
  float: left;
  width: 100%;
}
.faq-list .faq-item {
  float: left;
  width: 100%;
  list-style: none;
  border: 2px solid #f5f5f5;
  border-bottom: 0;
  padding: 10px;
  background: #fff;
}
.faq-list .faq-item:first-child {
  border-radius: 5px 5px 0 0;
}
.faq-list .faq-item:last-child {
  border-radius: 0 0 5px 5px;
  border-bottom: 2px solid #f5f5f5;
}
.faq-list .faq-item .question {
  float: left;
  width: 100%;
  font: 400 1.2rem "Ubuntu", sans-serif;
  color: #a846dc;
  cursor: pointer;
  padding-left: 10px;
  word-wrap: break-word;
}
.faq-list .faq-item .response {
  float: left;
  width: 100%;
  font: 400 1rem/1.5rem "Ubuntu", sans-serif;
  color: #636363;
  padding-top: 15px;
  padding-left: 25px;
  word-wrap: break-word;
}

.new-register {
  float: left;
  width: 280px;
  margin: 0 calc((100% - 280px) / 2);
  padding: 15px 35px;
  color: #fff;
  background-color: #a846dc;
  border-radius: 40px;
  font: 800 1rem "Ubuntu", sans-serif;
  border: 0;
}

/**
 * ticket conversation
 * ======================================================================================================= *
 */
.support-list {
  float: left;
  width: 980px;
  margin: 0 calc((100% - 980px) / 2);
}
.support-list .header {
  float: left;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.support-list-item {
  float: left;
  width: 100%;
  border-radius: 5px;
  border: 2px solid #e9e9e9;
  padding: 15px;
  margin-bottom: 10px;
  background: #f9f9f9;
}
.support-list-item .label {
  float: left;
  width: 100%;
  color: rgb(161, 161, 161);
  text-transform: uppercase;
  font: 800 0.8rem "Ubuntu", sans-serif;
}
.support-list-item .data {
  float: left;
  width: 100%;
  color: #4d4d4d;
  font: 400 1rem "Ubuntu", sans-serif;
}

/**
 * ticket conversation
 * ======================================================================================================= *
 */
.ticket-conversation {
}
.ticket-conversation li {
  float: left;
  width: 100%;
  list-style: none;
  margin-bottom: 10px;
  position: relative;
}
.ticket-conversation .avatar {
  position: absolute;
  float: left;
  width: 90px;
  padding: 5px 20px;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticket-conversation .support .avatar {
  right: 0;
}
.ticket-conversation .avatar img {
  float: left;
  width: 100%;
  border-radius: 50%;
}
.ticket-conversation .data {
  float: left;
  width: calc(100% - 90px);
  border: 2px solid #f5f5f5;
  padding: 10px;
  border-radius: 5px;
  margin-left: 90px;
}
.ticket-conversation .support .data {
  margin-left: 0;
}
.ticket-conversation .data .title {
  float: left;
  width: 100%;
  font: 400 1.15rem/1.5rem "Ubuntu", sans-serif;
  color: #a846dc;
}
.ticket-conversation .data .time {
  float: left;
  width: 100%;
  padding: 5px 0 10px 0;
  font: 800 0.75rem "Ubuntu", sans-serif;
  color: #5e5e5e;
}
.ticket-conversation .data .message {
  float: left;
  width: 100%;
  font: 400 1rem/1.5rem "Ubuntu", sans-serif;
  color: #5e5e5e;
  padding-top: 5px;
  border-top: 1px solid #f5f5f5;
}

.support-list .box-title,
.box .box-title {
  font: 400 1.5rem "Ubuntu", sans-serif;
  color: #a846dc;
}
.support-list .box-message,
.box .box-message {
  font: 400 1rem "Ubuntu", sans-serif;
}

*[class*="aside-section"] {
  position: fixed;
  z-index: 60;
  top: 0;
  right: -55%;
  width: 55%;
  height: 100%;
  padding: 25px 10px 25px 25px;
  background: #fff;
  border-bottom: 1px solid #f4f5f7;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15);
  transition: all 750ms ease;
  -o-transition: all 750ms ease;
  -ms-transition: all 750ms ease;
  -moz-transition: all 750ms ease;
}
*[class*="aside-section"].active {
  right: 0;
  box-shadow: 0 0px 100px 0 rgba(0, 0, 0, 0.15);
}
.window-content-fixed {
  float: left;
  width: 100%;
  height: calc(100vh - 180px); /* common.js */
  overflow-y: auto;
  padding-right: 15px;
}
.aside-section-large {
  right: calc(-1 * 100% - 300px);
  width: calc(100% - 300px);
  transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
}
.default-table {
  font: 400 1rem "Ubuntu", sans-serif;
}
.default-link {
  font-weight: 800;
  font-family: "Ubuntu", sans-serif;
  color: #a846dc;
  text-decoration: none;
  border-bottom: 2px solid #a846dc;
  cursor: pointer;
}
.window-header {
  float: left;
  width: 100%;
  margin-bottom: 25px;
}
.window-title {
  float: left;
  width: calc(100% - 90px);
  padding-right: 15px;
  font: 200 2.5rem "Ubuntu";
  color: #a846dc;
}
.window-info {
  float: left;
  width: calc(100% - 90px);
  padding-right: 15px;
  font: 400 1rem "Ubuntu";
  color: #636363;
}
*[class*="aside-section"] .btn-text {
  float: right;
  right: 20px;
  font-size: 0.8em;
  min-width: 90px;
  text-align: center;
  /* position: absolute; */
}

/**
 * Website
 * ======================================================================================================= *
 */
body.website {
  /* min-height: 150vh; */
  background: #f9f9f9;
}
body.website .main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 999;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
body.website .cover-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #a846dc;
  z-index: 9999;
}
body.website .header .wrapper {
  height: 80px;
  padding: 10px calc((100% - 1200px) / 2);
}
body.website .header .logo {
  float: left;
  height: 60px;
  width: 280px;
}
body.website .header .logo img {
  height: 100%;
}
body.website .header .main-menu {
  float: left;
  height: 60px;
  padding: 0 20px;
  width: calc(100% - 250px - 280px);
}
body.website .header .main-menu ul li {
  float: left;
  margin-right: 20px;
}
body.website .header .main-menu ul li a {
  color: #e9e9e9;
  text-decoration: none;
  font: 200 0.9rem/60px "Ubuntu", sans-serif;
}
body.website .header .main-menu ul li a:active,
body.website .header .main-menu ul li a:hover {
  color: #fff;
}
body.website .header .buttons-menu {
  float: left;
  height: 60px;
  width: 250px;
}
body.website .header .buttons-menu .signin {
  position: relative;
  float: left;
  margin-right: 20px;
  text-transform: uppercase;
  text-decoration: none;
  font: 800 0.9rem/60px "Ubuntu", sans-serif;
  color: #fff;
}
body.website .header .buttons-menu .signin:before {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  content: "";
  bottom: 17px;
}
body.website .header .buttons-menu .signup {
  float: left;
  margin-top: 7.5px;
  width: 170px;
  height: 45px;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font: 800 0.9rem/45px "Ubuntu", sans-serif;
  background: #fff;
  color: #a846dc;
}

body.website .main-header.header .main-menu ul li a {
  color: #7e7e7e;
}
body.website .main-header.header .buttons-menu .signup {
  background: #22d5b9;
  color: #fff;
}
body.website .main-header.header .buttons-menu .signin {
  color: #a846dc;
}
body.website .main-header.header .buttons-menu .signin:before {
  background: #a846dc;
}

.page {
  /* float: left; */
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 70vh;
  padding: 70px 0;
}
.page .page-title {
  width: 100%;
  text-align: center;
  color: #a846dc;
  font: 200 2rem "Ubuntu", sans-serif;
}
.page .page-title.white {
  color: #ffff;
}
.cover {
  padding: 130px calc((100% - 1200px) / 2) 0;
  min-height: 80vh;
  background: #a846dc;
  display: flex;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}
.cover-border {
  display: block;
  width: 100%;
  left: 0;
  height: 300px;
  margin-top: -150px;
  background: #a846dc;
  border-radius: 50%;
  z-index: -1;
  margin-bottom: 100px;
}
.small-cover {
  padding: 200px 0;
  height: 400px;
  min-height: 400px;
}
.small-cover .title {
  color: #ffff;
  font: 800 2rem "Ubuntu", sans-serif;
  text-align: center;
  width: 100%;
}

.cover .data {
  width: 500px;
}
.cover .data .page-title {
  float: left;
  color: #fff;
  font: 200 2.5rem "Ubuntu", sans-serif;
  text-align: left;
  margin-bottom: 20px;
}
.cover .data p {
  float: left;
  color: #fff;
  font: 200 1rem/1.25rem "Ubuntu", sans-serif;
  text-align: left;
  margin-bottom: 40px;
}
.btn-pay,
.default-cta,
.cover .data a {
  float: left;
  width: 300px;
  height: 50px;
  border: 0;
  border-radius: 25px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font: 800 1rem/50px "Ubuntu", sans-serif;
  background: #22d5b9;
  color: #fff;
}
.default-cta-after,
.cover .data span {
  float: left;
  width: 300px;
  text-align: center;
  margin-top: 5px;
  font: 800 0.8rem "Ubuntu", sans-serif;
  color: #fff;
}
.btn-pay {
  width: auto;
  height: auto;
  min-height: 30px;
  padding: 10px 20px;
  border-radius: 40px;
  font: 800 0.7rem "Ubuntu", sans-serif;
}

.cover .phone {
  width: calc(100% - 500px);
  position: relative;
}
.cover .phone .iphone {
  float: right;
  width: 300px;
  height: 600px;
  background: url("../image/website/phone.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.cover .phone .iphone .before-post {
  float: left;
  width: 100%;
  height: 150px;
  padding: 70px 30px;
  font: 400 1.2rem "Ubuntu", sans-serif;
  color: #fff;
}
.cover .phone .iphone .after-post {
  float: left;
  width: 100%;
  padding: 20px 30px;
  font: 400 0.9rem "Ubuntu", sans-serif;
  color: #fff;
}
.cover .phone .iphone .after-post > span {
  float: left;
  width: 50%;
  margin-top: 20px;
  font: 800 1.5rem "Ubuntu", sans-serif;
}
.cover .phone .iphone .after-post span .icon {
  float: left;
  margin-right: 5px;
}
.cover .phone .iphone .post-space {
  float: left;
  width: 100%;
  height: 250px;
}
.cover .phone .posts {
  position: absolute;
  width: 850px;
  right: -252px;
  margin-top: 150px;
}
.cover .phone .posts > div {
  width: 100%;
  z-index: 0;
}
.cover .phone .slick-slide,
.cover .phone .posts .post {
  float: left;
  margin: 0 20px;
}
.cover .phone .posts .post img {
  float: left;
  width: 100%;
}

/**
 * Website
 * ======================================================================================================= *
 */
.page.benefits {
  padding: 70px calc((100% - 1200px) / 2);
}
.page.benefits ul {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  margin-top: 70px;
}
.page.benefits ul li {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 30px;
  margin-bottom: 15px;
  border-radius: 3px;

  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
.page.benefits ul li .title {
  float: left;
  width: 100%;
  color: #727272;
  font: 200 1.75rem "Ubuntu";
}
.page.benefits ul li .icon {
  float: left;
  width: 100%;
  font-size: 6rem;
  margin: 20px 0;
  color: #a846dc;
}
.page.benefits ul li .text {
  position: relative;
  float: left;
  width: 100%;
  color: #727272;
  font: 400 1rem/1.5rem "Ubuntu";
  padding-left: 20px;
}
.page.benefits ul li .text:before {
  position: absolute;
  content: "";
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 3px;
  background: #a846dc;
}

/**
 * Website
 * ======================================================================================================= *
 */
.page.customers {
  min-height: 50vh;
  padding: 70px calc((100% - 1200px) / 2);
  display: flex;
  flex-direction: column;
  align-content: space-between;
  justify-content: space-between;
}
.customer-list .customer-item {
  padding-right: 20px;
}
.customer-list img {
  float: left;
  width: 100%;
}

/**
 * Website
 * ======================================================================================================= *
 */
.small-cover-content {
  float: left;
  width: 1200px;
  min-height: 500px;
  margin: 0 calc((100% - 1200px) / 2);
  margin-top: -100px;
  border-radius: 20px;
  background: #fff;
  padding: 100px;
  font: 400 1rem/1.75rem "Ubuntu", sans-serif;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  z-index: 99;
  margin-bottom: 100px;
}

/**
 *  
 * ======================================================================== */
.page.faq {
  float: left;
  width: 100%;
  padding: 70px calc((100% - 1200px) / 2);
  background: #b527ef;
}

.faq-site-list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  margin-top: 70px;
}
.faq-site-list .faq-site-item {
  display: inline-block;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 30px;
  margin-bottom: 15px;
  border-radius: 3px;

  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
.faq-site-list .faq-site-item .wrapper {
  float: left;
}
.faq-site-item .number {
  float: left;
  width: 30px;
  font: 800 2rem "Ubuntu", sans-serif;
  color: #b527ef;
}
.faq-site-item .faq-title {
  float: left;
  font: 400 1.2rem "Ubuntu", sans-serif;
  color: #b527ef;
  width: calc(100% - 30px);
  padding-left: 10px;
}
.faq-site-item .faq-anwser {
  float: left;
  width: 100%;
  margin-top: 10px;
  font: 400 0.9rem/1.25rem "Ubuntu", sans-serif;
  color: #727272;
}

/**
 *  
 * ======================================================================== */
body.website .page-testimony {
  float: left;
  background: #fff;
  padding: 70px calc((100% - 1200px) / 2);
}

.video-testmony-list {
  float: left;
  width: 100%;
  margin-top: 40px;
}
.video-testmony-item {
  float: left;
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 20px;
}
.video-testmony-item:nth-child(3n-3) {
  margin-right: 0;
}
.video-testmony-item .videoarea {
  position: relative;
  float: left;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  border-radius: 5px !important;
  overflow: hidden !important;
}
.video-testmony-item .videoarea iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px !important;
  overflow: hidden !important;
}

.text-testmony-list {
  float: left;
  width: 100%;
}
.text-testmony-item {
  float: left;
  width: 100%;
  padding: 80px;
  background: #fff;
}
.text-testmony-item .image {
  float: left;
  width: 30%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
}
.text-testmony-item .image .wrapper {
  float: left;
  width: 100%;
  height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 150%;
}
.text-testmony-item .text {
  width: 70%;
  padding-left: 150px;
  padding-top: 40px;
  float: left;
}
.text-testmony-item .text .message {
  position: relative;
  font: 200 2rem "Ubuntu", sans-serif;
  color: #727272;
}
.text-testmony-item .text .message:before {
  position: absolute;
  content: '"';
  color: #b527ef;
  font-size: 8rem;
  left: -60px;
  top: -30px;
}
.text-testmony-item .text .stars {
  float: left;
  width: 100%;
  margin: 20px 0;
  color: #ffae00;
  font-size: 1.5rem;
}
.text-testmony-item .text .stars > div {
  margin-right: 5px;
  float: left;
}
.text-testmony-item .text .author {
  width: 100%;
  margin-top: 15px;
  font: 400 1rem "Ubuntu", sans-serif;
  color: #b527ef;
}
.text-testmony-list .slick-dots {
  position: absolute;
  width: auto;
  float: right;
  right: 0;
  bottom: 100px;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #b527ef;
}
.slick-dots li.slick-active {
  background: #b527ef;
}
.slick-dots li button:before {
  display: none;
}

/* PERIOD-TEXT */

.period-text {
  float: left;
  height: auto;
  width: 100%;
  padding: 25px;
  margin-top: 15px;
  border: 2px solid #b527ef;
  border-radius: 5px;
  font: 400 1.2rem "Ubuntu", sans-serif;
  color: #727272;
}

.period-text p {
  font: 400 1.2rem "Ubuntu", sans-serif;
}

/**
 *  
 * ======================================================================== */
.logogeeneratorform {
  margin: 0 auto;
  position: relative;
  width: 300px;
}
.logogeeneratorform .pretitle {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  font: 400 0.9rem/1.25rem "Ubuntu", sans-serif;
  color: #5e5e5e;
}

.logogeeneratorform .pretitle a {
  color: #ac25e3;
  text-decoration: underline;
}
.logogeeneratorform .logo-wrapper {
  float: left;
  width: 300px;
  height: 300px;
  position: relative;
  border: 1px solid #2b2b2b;
}
.logogeeneratorform .line1,
.logogeeneratorform .line2,
.logogeeneratorform .line3,
.logogeeneratorform .line4,
.logogeeneratorform .line5,
.logogeeneratorform .line6,
.logogeeneratorform .line7 {
  float: left;
  width: 100%;
  border: none;
  text-align: center;
  font-family: "Ubuntu";
  background: transparent;
}

.logogeeneratorform .line1 {
  font-weight: bold;
  font-size: 24px;
  margin-top: 5px;
}
.logogeeneratorform .line2 {
  font-weight: normal;
  font-size: 22px;
  font-style: italic;
}
.logogeeneratorform .line3 {
  font-weight: normal;
  font-size: 16px;
}
.logogeeneratorform .line4 {
  margin-top: 50px;
  font-weight: normal;
  font-size: 24px;
}
.logogeeneratorform .line5 {
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 45px;
}
.logogeeneratorform .line6 {
  font-size: 26px;
  font-weight: bold;
}
.logogeeneratorform .line7 {
  font-size: 24px;
  margin-top: 2px;
}
.logogeeneratorform .wpp-logo {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 225px;
  left: 7px;
}
.logoexamples {
  display: flex;
  flex-direction: column;
}
.logoexamples h3 {
  padding-top: 80px;
  text-align: center;
  margin-bottom: 20px;
  font: 400 1.5rem "Ubuntu", sans-serif;
  color: #ac25e3;
}
.logoexamples .promo {
  float: left;
  width: 100%;
  padding: 0 15%;
  margin-top: 40px;
  text-align: center;
  font: 400 1.1rem "Ubuntu", sans-serif;
  color: #5e5e5e;
}
.logoexamples .images {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.logoexamples img {
  float: left;
  border: 1px solid #ccc;
  margin-right: 10px;
  margin-bottom: 10px;
  width: calc((100% - 20px) / 2);
  flex: 1;
  display: flex;
}
.logoexamples img:nth-child(even) {
  margin-right: 0;
}

/**
 *  
 * ======================================================================== */
body.website .main-footer {
  float: left;
  width: 100%;
  padding: 100px 7vw 50px 7vw;
  background: #ac25e3;
}
body.website .main-footer {
}
body.website .main-footer .content-group-infos {
  float: left;
  width: calc(100% - 320px);
  display: grid;
  grid-template-columns: 350px auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "A B"
    "C D";
}
body.website .main-footer .logo {
  grid-area: A;
  padding-right: 100px;
}
body.website .main-footer .logo img {
  float: left;
  width: 100%;
}
body.website .main-footer .copy {
  grid-area: C;
  padding-top: 20px;
  font: 400 1rem "Ubuntu", sans-serif;
  color: #fff;
}
body.website .main-footer .copy span {
  float: left;
  width: 100%;
}
body.website .main-footer .copy .flag-container {
  margin-top: 10px;
  margin-right: 0;
}
body.website .main-footer .menus {
  grid-area: B;
  padding: 0 10% 0 0;
  display: flex;
}
body.website .main-footer .menus ul {
  float: left;
  width: 50%;
}
body.website .main-footer .menus ul li {
  float: left;
  list-style: none;
  width: 100%;
  font: 400 1rem "Ubuntu", sans-serif;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.85);
}
body.website .main-footer .menus ul li:active,
body.website .main-footer .menus ul li:hover {
  color: #fff;
}
body.website .main-footer .menus ul li.title {
  font: 200 1.5rem "Ubuntu", sans-serif;
  margin-bottom: 25px;
  color: #fff;
  opacity: 0.6;
}
body.website .main-footer .menus ul a {
  font: inherit;
  color: inherit;
  text-decoration: none;
}
body.website .main-footer .social {
  grid-area: D;
  padding: 20px 10% 0 0;
}
body.website .main-footer .social ul {
  float: right;
}
body.website .main-footer .social ul li {
  float: left;
  list-style: none;
  margin-left: 10px;
}
body.website .main-footer .social ul li a {
  float: left;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}

body.website .main-footer .content-group-instagram,
body.website .main-footer .instagram {
  float: right;
  width: 250px;
}
body.website .main-footer .instagram {
  /* background: #fff; */
  border-radius: 3px;
  padding: 10px;
}
body.website .main-footer .instagram ul li {
  float: left;
  /* border: 2px solid #fff; */
  width: calc((100% - 10px) / 3);
  height: auto;
  margin-right: 5px;
  margin-bottom: 5px;
  list-style: none;
  border-radius: 3px;
}
body.website .main-footer .instagram ul li img {
  float: left;
  width: 100%;
}
body.website .main-footer .instagram ul li:nth-of-type(3n-3) {
  margin-right: 0;
}

body.website .demo {
  float: left;
  width: 100%;
  margin-top: 70px;
  padding: 0 calc((100% - 1200px) / 2);
}
body.website .demo .steps {
  width: 100%;
}
body.website .demo .steps .bar {
  position: relative;
  display: flex;
  width: 100%;
  height: 50px;
  margin-top: 50px;
}
body.website .demo .steps .bar:before {
  position: absolute;
  width: 75%;
  left: calc(12.5% / 2);
  height: 5px;
  content: "";
  background: #b527ef;
  border-radius: 3px;
  z-index: 1;
}
body.website .demo .steps div {
  flex: 1;
}
body.website .demo .steps div span {
  position: relative;
  float: left;
  left: 25%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: -22.5px;
  border: 5px solid #b527ef;
  color: #b527ef;
  background: #f9f9f9;
  z-index: 2;
  text-align: center;
  box-shadow: 0 0 0 10px #f9f9f9;
  font: 800 1.25rem/40px "Ubuntu", sans-serif;
}
body.website .demo .steps div span {
}
body.website .demo .steps .texts {
  display: flex;
}
body.website .demo .steps .texts .step {
  flex: 1;
  display: flex;
  padding: 15px;
  flex-direction: column;
}

body.website .demo .steps .texts .step .step-title {
  font: 800 1.25rem/1.75rem "Ubuntu", sans-serif;
  color: #b527ef;
}
body.website .demo .steps .texts .step .step-text {
  font: 400 0.9rem "Ubuntu", sans-serif;
  color: #5e5e5e;
}

body.website .demo .about {
  display: flex;
  width: 100%;
  margin-top: 80px;
}
body.website .demo .about .video {
  flex: 1;
  position: relative;
  width: 100%;
  padding: 40px;
}
body.website .demo .about .video .wrapper {
  position: relative;
  float: left;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  border-radius: 5px !important;
  overflow: hidden !important;
}
body.website .demo .about .video .wrapper .iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px !important;
  overflow: hidden !important;
}
body.website .demo .about .videoaside {
  text-align: left;
  flex: 1;
  padding: 50px 0;
  font: 400 1rem/1.5rem "Ubuntu", sans-serif;
  color: #5e5e5e;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.website .demo .about .videoaside .page-title {
  text-align: left;
  font: 400 2rem/1.75rem "Ubuntu", sans-serif;
  color: #b527ef;
}
body.website .demo .about .videoaside .default-cta-after {
  color: #5e5e5e;
}

/**
 * ======================================================================================================= *
 */
.appcheckout {
  width: 850px;
  margin: 0 calc((100% - 850px) / 2);
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 25px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.appcheckout form > div {
  float: left;
}
.appcheckout .labelchoose {
  float: left;
  width: 100%;
  padding: 7px;
  border-radius: 5px;
  background: #f9f9f9;
  margin-bottom: 10px;
  border: 1px solid #e9e9e9;
  font: 800 0.9em "Ubuntu";
}
.appcheckout .labelchoose input {
  margin-right: 5px;
}
.appcheckout .input-group select {
  /* margin: 0px; */
  left: 10px;
  width: 100%;
}

.payment-tab {
  float: left;
  width: 100%;
  margin: 0;
  display: none;
}
.payment-tab.active {
  display: block !important;
}
.payment-tab p {
  float: left;
  width: 100%;
  margin-bottom: 15px;

  font: 400 0.9em/1.15rem "Ubuntu";
  color: #5f5f5f;
}
.payment-tab input[type="submit"] {
  float: left;
  width: 100%;
  height: 50px;
  margin: 20px 0;
  padding: 0 10px;
  border: none;
  border-radius: 25px;
  background: #25d366;
  font: 400 1em/50px "Ubuntu";
  color: #fff;

  appearance: none;
  -webkit-appearance: none;
  transition: all 350ms ease;
  -o-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
}
.payment-tab input[type="submit"]:hover {
  background: #15e963;
}
.payment-tab input[type="text"] {
}

.account-data > h2 {
  float: left;
  width: 100%;
  font: 400 1.75rem "Ubuntu";
  color: #b527ef;
}
.account-data > h2 small {
  float: left;
  width: 100%;
  font: 400 0.75rem "Ubuntu";

  color: #5f5f5f;
}
.account-data .p,
.account-data > p {
  float: left;
  width: 100%;
  font: 400 0.9rem/1.15rem "Ubuntu";
  color: #5f5f5f;
  margin-bottom: 10px;
}

.payment-data .terms {
  float: left;
  width: 100%;
  padding: 0 10%;
  margin-bottom: 15px;
  text-align: center;
  font: 400 0.9em/1.15rem "Ubuntu";
  color: #5f5f5f;
}
.plan-details {
  float: left;
  width: 95%;
  padding: 20px;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.plan-details .plantitle {
  float: left;
  width: 100%;
  font: 400 1rem/1.15rem "Ubuntu";
  margin-bottom: 5px;
  color: #5f5f5f;
}
.plan-details .value {
  float: left;
  width: 100%;
  text-align: center;
  font: 800 4rem/3rem "Ubuntu";
  letter-spacing: -3px;
  color: #15e963;
}
.plan-details .value small {
  font: 400 0.5em "Ubuntu";
}
.plan-details .value small:first-of-type {
  text-decoration: wavy;
}

@media (max-width: 768px) {
  .appcheckout {
    width: 100%;
    margin: 0;
  }
  .welcome-message .popup {
    max-width: 90%;
  }
  .welcome-message .popup iframe {
    width: 100%;
  }
  .trial-warning {
    width: 100%;
    margin: 0;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
    text-align: center;
    font: 400 0.8rem "Ubuntu", sans-serif;
    color: #fff;
    background: #fd5608;
  }
  .trial-warning * {
    padding: 0;
    margin: 0;
  }
  .trial-warning strong {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
  }
  #messages-from-system {
    width: calc(100% - 60px);
    padding: 10px;
    top: 27 px;
    position: fixed;
    z-index: 999999999999999;
  }
  .only-mobile {
    display: block;
  }
  .toggle-menu {
    display: block;
  }
  .toggle-menu:after {
    display: block;
    content: "Menu";
    text-transform: uppercase;
    position: absolute;
    top: 35px;
    right: 10px;
    font: 800 0.6rem "Ubuntu", sans-serif;
  }
  .login-popup {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 10% 5% 70% 5%;
    height: auto;
    background: #a846dc;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-popup .wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: space-between;
    width: 400px;
    height: auto;
    border-radius: 10px;
    background: #fff;
    padding: 40px;
  }
  .login-popup.signup .warnning {
    width: 100%;
    padding: 25px 0 0;
  }
  #appnav {
    display: fixed;
    padding: 20px 0 40px 0;
    left: -100%;
    overflow: auto;

    transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
  }
  #appnav.active #appnav-toggle {
    width: 250%;
    visibility: visible;
    backface-visibility: visible;
  }
  #appnav.active {
    left: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
  }
  #appnav .avatar,
	/* #appnav .odontopost-brand-img, */
	#appnav .customer-logo {
    display: none;
  }
  #appnav .odontopost-brand a {
    margin-left: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  #appcontent {
    padding: 10px;
    width: 100%;
    margin-left: 0;
    padding-bottom: 150px;
  }
  .main-header {
    height: auto;
    min-height: 60px;
    padding-top: 20px;
    padding-left: 20px;
  }
  .main-header .data {
    width: 100%;
    margin-top: 50px;
  }
  .main-header .support,
  .main-header .window-paragraph {
    display: none;
  }
  .searchbar {
    width: 100%;
    top: 0px;
    left: 0;
    padding: 0 10px 0 10px;
  }
  .searchbar .brand {
    float: left;
    width: 50px;
    padding-top: 10px;
    padding-right: 10px;
  }
  .searchbar .post-filter {
    /* display: none; */
  }

  .metric:nth-child(5n-5),
  .metric {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .metric:nth-child(1) {
    width: 100%;
  }
  .metric:nth-child(3),
  .metric:nth-child(5) {
    margin-right: 0;
  }
  .metric .display {
    float: none;
    margin: 0;
    padding: 0;
    font: 800 1.25rem/1.25rem "Ubuntu", sans-serif;
    text-align: right;
    width: 40%;
  }
  .metric .title {
    float: none;
    margin: 0;
    padding: 0;
    width: 60%;
    font: 400 0.5rem/0.7rem "Ubuntu", sans-serif;
  }
  .post-list .post-item:nth-child(4n-4),
  .post-list .post-item {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .post-list .post-item:nth-child(2n-2) {
    margin-right: 0;
  }
  .input-submit,
  .rounded-button {
    width: 100%;
  }
  .logo-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .crop-wrap {
    float: left;
    width: 100%;
    height: auto;
    min-height: auto;
  }
  .crop-image {
    height: auto;
    min-height: auto;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e9e9e9;
  }
  .croping {
    float: left;
    width: 100%;
    height: auto;
    min-height: auto;
    padding-bottom: 20px;
    background: #fff;
  }
  .crop-image .help {
    width: 90%;
    margin: 0 5%;
    font: 800 0.8rem/0.9rem "Ubuntu";
    padding: 10px 15px;
  }
  .post-filter form {
    display: flex;
    float: none;
    flex-direction: column-reverse;
  }

  .cancel-account {
    width: 100%;
    margin: 0;
    box-shadow: none;
    background: transparent;
  }
  .cancel-account .button-wrapper {
    flex-direction: column;
  }
  .cancel-account .button-back {
    margin-bottom: 20px;
  }
  .syspopup {
    padding: 0;
    z-index: 9999999999999999;
    display: flex;
    overflow: auto;
    align-items: flex-start;
  }
  .syspopup .wrapper {
    width: 100%;
    height: auto;
    min-height: 100%;
    padding: 40px 20px;
    padding-top: 70px;
  }
  .post-download > section {
    display: flex;
    flex-direction: column;
  }
  .post-download .data {
    padding-right: 0;
    padding-left: 0;
    margin-left: 0;
    padding-top: 30px;
  }
  .post-download .data .cta-download {
    width: 100%;
  }
  .post-download .data .description {
    margin: 25px 0;
  }
  .post-list .post-item .data .like .icon {
    margin-top: 10px;
    font-size: 20px;
  }
  .support-list {
    width: 100%;
    margin: 0;
  }
  .page-plans {
    margin-top: 30px;
  }
  .tabs-header {
    width: 100%;
  }
  .tabs-header .tab-menu-item {
    font-size: 0.85rem;
  }
  .page-plans .group {
    flex-direction: column;
  }
  .page-plans .plan {
    width: 100%;
  }

  .default-form .input-group {
    height: auto;
    min-height: 55px;
    border-radius: 30px;
    padding: 10px 30px;
    flex-direction: column;
  }
  .default-form .input-group .label {
    width: 100%;
    font: 800 0.7rem "Ubuntu";
  }
  .default-form .input-group select,
  .default-form .input-group textarea,
  .default-form .input-group input {
    position: relative;
    height: auto;
    margin-top: 5px;
    font: 400 1rem "Ubuntu";
    width: 100%;
  }
  .default-form .input-group select {
    padding: 20px 0 0 30px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .default-form .input-group textarea {
    font: 400 0.85rem/0.9rem "Ubuntu";
  }
  *[class*="aside-section"] {
    right: -100%;
    width: 100%;
    padding: 50px 20px;
    overflow: auto;
  }
  .only-desktop,
  .post-download .only-desktop.cta-download.active,
  .only-desktop.active {
    display: none !important;
  }
  .customareas.syspopup .close {
    top: -20px;
    right: 0;
  }
  .available-bank-slip {
    flex-direction: column;
  }
  .available-bank-slip div {
    margin: 0;
    margin-top: 20px;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .immages {
    float: left;
    width: 100%;
  }
}
