.test {
  border: 1px solid red;
}

/* Fonts */
@font-face {
  font-family: "Geomanist";
  src: url("../../fonts/Geomanist/Geomanist.woff2") format("woff2"),
    url("../../fonts/Geomanist/Geomanist.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Geomanist Italic";
  src: url("../../fonts/Geomanist-Italic/Geomanist-Italic.woff2") format("woff2"),
    url("../../fonts/Geomanist-Italic/Geomanist-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Geomanist Medium";
  src: url("../../fonts/Geomanist-Medium/Geomanist-Medium.woff2") format("woff2"),
    url("../../fonts/Geomanist-Medium/Geomanist-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Geomanist Bold";
  src: url("../../fonts/Geomanist-Bold/Geomanist-Bold.woff2") format("woff2"),
    url("../../fonts/Geomanist-Bold/Geomanist-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Geomanist Black";
  src: url("../../fonts/Geomanist-Black/Geomanist-Black.woff2") format("woff2"),
    url("../../fonts/Geomanist-Black/Geomanist-Black.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* General */
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background-color: #9d9fa2;
  border: 2px solid white;
  border-radius: 50px;
}

/* Lightbox */
.uk-lightbox-toolbar {
  background: rgba(0, 0, 0, 0)
}

/* Typography */
html,
body {
  font-family: "Geomanist";
}

em {
  font-family: "Geomanist Italic";
}

strong {
  font-family: "Geomanist Medium";
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Geomanist";
}

.uk-heading-2xlarge,
.uk-heading-xlarge,
.uk-heading-large,
.uk-heading-medium,
.uk-heading-small {
  font-family: "Geomanist Black";
  letter-spacing: -0.05em;
}

.uk-text-bold {
  font-family: "Geomanist Bold";
  letter-spacing: -0.03em;
  font-weight: normal;
}

.uk-text-bolder {
  font-family: "Geomanist Black";
  letter-spacing: -0.05em;
  font-weight: normal;
}

/* Links */
a {
  transition: 0.5s;
}

a:hover,
a:focus {
  text-decoration: none;
}

.tm-link-light {
  color: white;
}

.tm-link-light:hover,
.tm-link-light:focus {
  color: #9d9fa2;
}

.tm-link-dark {
  color: #666;
}

.tm-link-dark:hover,
.tm-link-dark:focus {
  color: #221e1f;
}

/* Headings */
.tm-heading-light {
  color: rgba(255, 255, 255, 0.7);
}

.tm-heading-dark {
  color: rgba(0, 0, 0, 0.7);
}

/* Line Height */
.tm-line-height {
  line-height: normal;
}

/* Margins */
.uk-margin-xsmall-top {
  margin-top: 5px;
}

.uk-margin-xsmall-bottom {
  margin-bottom: 5px;
}

.uk-margin-xsmall-left {
  margin-left: 5px;
}

.uk-margin-xsmall-right {
  margin-right: 5px;
}

/* Spacing */
.tm-top-1 {
  top: 1px;
}

.tm-top-2 {
  top: 2px;
}

.tm-top-3 {
  top: 3px;
}

.tm-top-4 {
  top: 4px;
}

.tm-top-5 {
  top: 5px;
}

.tm-top-10 {
  top: 10px;
}

.tm-top-n1 {
  top: -1px;
}

.tm-top-n2 {
  top: -2px;
}

.tm-top-n3 {
  top: -3px;
}

.tm-top-n4 {
  top: -4px;
}

.tm-top-n5 {
  top: -5px;
}

.tm-top-n10 {
  top: -10px;
}

/* Transform */
.tm-transform-180 {
  transform: rotate(180deg);
}

/* Borders */
.tm-border-top {
  border-top: 1px solid #e5e5e5;
}

.tm-border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.tm-border-left {
  border-left: 1px solid #e5e5e5;
}

.tm-border-right {
  border-right: 1px solid #e5e5e5;
}

/* Buttons */
.uk-button {
  font-family: "Geomanist Medium";
  font-weight: normal;
  font-size: 1rem;
  padding: 0 25px;
  transition: 0.5s;
  overflow: hidden;
  transform: scale(1);
  min-height: 40px;
}

.uk-button-small {
  padding: 0 15px;
  line-height: 28px;
  font-size: 14px;
  min-height: unset;
}

.uk-icon-button {
  width: 40px;
  height: 40px;
  overflow: hidden;
  transform: scale(1);
}

.uk-button-default {
  color: white !important;
  border-color: white !important;
}

.uk-button-default:hover,
.uk-button-default:focus {
  color: #221e1f !important;
  background: white !important;
  border-color: white !important;
}

.uk-button-primary {
  color: white !important;
  background: #221e1f;
  border-color: #221e1f !important;
}

.uk-button-primary:hover,
.uk-button-primary:focus {
  color: #221e1f !important;
  background: white !important;
  border-color: white !important;
}

.uk-button-secondary {
  color: white !important;
  background: #9d9fa2;
  border-color: #9d9fa2 !important;
}

.uk-button-secondary:hover,
.uk-button-secondary:focus {
  color: #221e1f !important;
  background: white !important;
  border-color: white !important;
}

.uk-button-primary-outline {
  color: #221e1f !important;
  background: none !important;
  border: 1px solid #221e1f !important;
}

.uk-button-primary-outline:hover,
.uk-button-primary-outline:focus {
  color: white !important;
  background: #221e1f !important;
  border-color: #221e1f !important;
}

.uk-button-secondary-outline {
  color: #9d9fa2 !important;
  border: 1px solid #9d9fa2 !important;
}

.uk-button-secondary-outline:hover,
.uk-button-secondary-outline:focus {
  color: white !important;
  background: #9d9fa2 !important;
  border-color: #9d9fa2 !important;
}

.uk-button-success {
  color: white !important;
  background: #32d296 !important;
  border-color: #32d296 !important;
}

.uk-button-success:hover,
.uk-button-success:focus {
  background: #30c78e !important;
  border-color: #30c78e !important;
}

.uk-button-submit {
  color: white !important;
  background: #221e1f;
  border-color: #221e1f !important;
}

.uk-button-submit:hover,
.uk-button-submit:focus {
  background: #9d9fa2 !important;
  border-color: #9d9fa2 !important;
}

.uk-button-facebook {
  color: #3b5998 !important;
  background: none !important;
  border: 1px solid #3b5998 !important;
}

.uk-button-facebook:hover,
.uk-button-facebook:focus {
  color: white !important;
  background: #3b5998 !important;
  border-color: #3b5998 !important;
}

.tm-button-rounded {
  border-radius: 50px;
}

.tm-button-wide {
  min-width: 100px;
}

/* Alert */
.uk-alert-primary .uk-button {
  border: 1px solid #1e87f0;
  color: #1e87f0;
  background-color: #d8eafc;
}

.uk-alert-primary .uk-button:hover,
.uk-alert-primary .uk-button:focus {
  background-color: #1e87f0;
  color: white;
}

.uk-alert-popi {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0;
  z-index: 9999;
}

/* Cards */
.tm-card-default {
  background: #f8f8f8 !important;
  box-shadow: none !important;
}

.uk-card-secondary {
  background: #221e1f !important;
  box-shadow: none !important;
}

.uk-card-muted {
  background: #9d9fa2 !important;
  box-shadow: none !important;
}

/* Banners */
.tm-banner {
  display: none;
}

.tm-banner-active {
  display: block;
}

.tm-banner .uk-overlay {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Instashow */
.eapps-instagram-feed-posts-grid-load-more {
  background: none !important;
}

.eapps-instagram-feed-posts-grid-load-more-text {
  font-family: "Geomanist Medium";
  font-weight: normal;
  font-size: 1rem;
  padding: 0 25px;
  transition: 0.5s;
  min-height: 40px;
  border-radius: 50px;
  display: inline-block;
  box-sizing: border-box;
  line-height: 38px;
  text-align: center;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  color: #221e1f !important;
  background: white !important;
  border: 1px solid #221e1f !important;
  -webkit-appearance: none;
}

.eapps-instagram-feed-posts-grid-load-more-text:hover,
.eapps-instagram-feed-posts-grid-load-more-text:focus {
  color: white !important;
  background: #221e1f !important;
}

.eapps-instagram-feed {
  font-family: "Geomanist" !important;
}

.eapps-instagram-feed a {
  color: #221e1f !important;
}

/* Switcher */
.uk-switch li.uk-active a {
  color: #221e1f !important;
  opacity: 1 !important;
}

.uk-switch li a {
  font-family: "Geomanist Medium";
  font-weight: normal;
}

.uk-switch li a[disabled],
.uk-switch li a:hover[disabled],
.uk-switch li a:focus[disabled] {
  cursor: default;
  color: #999;
  opacity: 0.5;
}

/* Text Colours */
.uk-text-primary {
  color: #221e1f !important;
}

.uk-text-secondary {
  color: #666666 !important;
}

.uk-text-muted {
  color: #9d9fa2 !important;
}

.uk-text-emphasis {
  color: white !important;
}

/* Background Colours */
.tm-bg-black {
  background: black;
}

.tm-bg-dark {
  background: #221e1f;
}

.tm-bg-light {
  background: white;
}

.tm-bg-light-alt {
  background: #f8f8f8;
}

.uk-section-default {
  background: #9d9fa2;
}

/* Gradients */
.tm-background-gradient {
  position: relative;
  z-index: 1;
  color: white !important;
}

.tm-background-gradient:before {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s linear;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.tm-background-gradient:hover:before {
  opacity: 1;
}

.tm-button-gradient {
  color: white;
  border: 1px solid white;
}

.tm-button-gradient:hover,
.tm-button-gradient:focus {
  background: white;
}

/* Grayscale */
.grayscale {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}

/* Icons */
.tm-icon-link {
  color: #221e1f !important;
}

.uk-form-icon {
  z-index: 1;
  width: 19px;
}

.uk-form-icon:not(.uk-form-icon-flip)~.uk-input {
  padding-left: 30px !important;
}

/* Counter List */
ol.counter {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

ol.counter>li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}

ol.counter>li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}

li ol.counter>li {
  margin: 0;
}

li ol.counter>li:before {
  content: counters(item, ".") " ";
}

/* Inputs */
textarea {
  resize: vertical;
  padding: 1rem !important;
  background: #f8f8f8 !important;
}

textarea:focus {
  border-color: rgba(0, 0, 0, 0.2) !important;
}

.uk-input {
  border-left: none;
  border-right: none;
  border-top: none;
  padding-left: 0;
  padding-right: 0;
  background: #f8f8f8 !important;
}

.uk-input:focus {
  border-color: rgba(0, 0, 0, 0.2);
  color: #666;
}

/* Autocomplete */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border-bottom: 1px solid #e5e5e5;
  -webkit-text-fill-color: #666;
  -webkit-box-shadow: 0 0 0 1000px #f8f8f8 inset;
  transition: background-color 5000s ease-in-out 0;
}

/* Select2 */
.select2 {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  border-left: none;
  border-right: none;
  border-top: none;
  padding-left: 30px;
  padding-right: 0;
  border-color: #e5e5e5;
  background: #f8f8f8;
  border-radius: 0;
  height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #666;
  line-height: 38px;
  padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  line-height: 37px;
}

.select2-dropdown {
  border-radius: 0;
  border-color: #e5e5e5;
}

.select2-container--default .select2-search--dropdown {
  padding: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  font-family: "Geomanist";
  font-size: 1rem;
  padding: 10px 15px;
  height: 40px;
  line-height: 38px;
  border-left: none;
  border-right: none;
  border-top: none;
  border-color: #e5e5e5;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.select2-container--default .select2-results__group {
  padding: 10px 15px;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 30px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #f9f9f9;
  color: #666;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #f5f5f5;
  color: #666;
}

/* Input Group */
.tm-input-group {
  display: flex;
}

.tm-input-group-append {
  display: flex;
  align-items: center;
  margin-left: -23px;
}

.tm-input-group-append.tm-captcha {
  margin-left: -148px;
}

.tm-input-group-text {
  font-family: "Geomanist Medium";
  display: flex;
  align-items: center;
  height: 38px;
  white-space: nowrap;
  margin-left: 0px;
  font-size: 13px;
  text-transform: uppercase;
}

.tm-input-group .uk-input {
  padding-right: 30px;
}

/* Validation */
em.uk-form-danger {
  font-family: "Geomanist";
  font-style: normal;
  font-size: 14px;
  border-top: 1px solid #f0506e;
  width: 100%;
  display: block;
  margin-top: -1px;
  padding-top: 5px;
  position: relative;
  z-index: 1;
}

.uk-form-success {
  border-color: #e5e5e5;
  color: #666;
}

/* Search */
.uk-search-default {
  width: 250px;
}

.uk-search-default .uk-search-input {
  padding-left: 15px;
}

.uk-search-default .uk-search-icon {
  width: 55px;
}

.uk-search-input.error {
  border-color: #f0506e;
}

.uk-search-input.error::placeholder {
  color: #f0506e;
}

.uk-search-input:-webkit-autofill,
.uk-search-input:-webkit-autofill:hover,
.uk-search-input:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: #666;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  transition: background-color 5000s ease-in-out 0;
}

.uk-search-default input:-webkit-autofill,
.uk-search-default input:-webkit-autofill:hover,
.uk-search-default input:-webkit-autofill:focus {
  border: 1px solid #e5e5e5;
  -webkit-text-fill-color: #666;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  transition: background-color 5000s ease-in-out 0;
}

.uk-search-button {
  margin-top: 30px;
  width: 70px;
  height: 70px;
  background: #ebebeb;
}

/* Modal */
.uk-modal-full .tm-vh-overflow {
  max-height: 100vh;
  overflow: auto;
  display: flex;
  flex-direction: column
}

.uk-modal-close-full {
  top: 20px;
  background: none;
}

.uk-modal-close-full.uk-modal-close-search {
  top: 0;
}

.uk-modal-inner {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

/* Tooltip */
.uk-tooltip {
  background: #9d9fa2;
  border-radius: 25px;
  padding: 2px 7px;
}

.uk-tooltip-top-center:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #9d9fa2 transparent transparent transparent;
}

/* Labels */
.uk-label-default {
  background: #78c9cd;
}

.tm-label-white {
  background: #f9f9f9 !important;
  color: #666 !important;
}

.tm-label-light-grey {
  background: #ccc !important;
}

.tm-label-dark-grey {
  background: #999 !important;
}

.tm-label-bronze {
  background: #503e2a !important;
}

.tm-label-charcoal {
  background: #263137 !important;
}

.tm-label-black {
  background: #000 !important;
}

/* Notifications */
.uk-notification {
  width: auto !important;
}

.uk-notification-message {
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}

.uk-notification-top-center {
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-left: unset !important;
}

/* Nav */
.uk-navbar-nav>li>a,
.uk-navbar-item,
.uk-navbar-toggle {
  font-family: inherit;
  text-transform: none;
  font-size: 1rem;
}

.uk-navbar-nav>li>a {
  color: white !important;
  min-height: 70px;
}

.uk-navbar-nav>li>a:active {
  color: white;
}

.tm-navbar-container {
  background: #9d9fa2;
}

.tm-navbar-container .uk-navbar-nav>li.uk-active>a {
  color: white;
}

.uk-navbar-sticky .uk-button-default {
  color: white !important;
  border-color: white !important;
}

.uk-navbar-sticky .uk-button-default:hover,
.uk-navbar-sticky .uk-button-default:focus {
  color: white !important;
  background: #f0506e !important;
  border-color: #f0506e !important;
}

.uk-nav-primary>li>a,
.uk-nav-primary .uk-nav-sub a {
  color: #9d9fa2;
}

.uk-nav-primary>li>a:focus,
.uk-nav-primary>li>a:hover,
.uk-nav-primary .uk-nav-sub a:focus,
.uk-nav-primary .uk-nav-sub a:hover {
  color: white;
}

/* Mobile Menu */
.tm-mobile-button {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  z-index: 100;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 50%;
  padding: 0;
  background: #221e1f;
  line-height: 0.6;
  text-align: center;
}

.tm-mobile-button:hover,
.tm-mobile-button:focus {
  outline: none;
}

.tm-mobile-menu:before {
  display: block;
  position: fixed;
  z-index: 4;
  bottom: 0;
  left: 0;
  content: "";
  width: 100vw;
  height: 100vh;
  background: #221e1f;
  transition: all 0.3s ease-in-out;
  clip-path: circle(30px at calc(50%) calc(100% - 70px));
  -webkit-clip-path: circle(30px at calc(50%) calc(100% - 70px));
  visibility: hidden;
}

.active.tm-mobile-menu:before {
  visibility: visible;
  clip-path: circle(100%);
  -webkit-clip-path: circle(100%);
}

.tm-mobile {
  position: fixed;
  height: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  background: white;
  z-index: 5;
}

.tm-mobile .tm-icon-link {
  color: #221e1f !important;
}

.tm-mobile.active {
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0);
  background: none;
}

.tm-mobile .hamburger.is-active:hover,
.tm-mobile .hamburger:hover {
  opacity: 1;
}

.tm-mobile .hamburger-inner,
.tm-mobile .hamburger-inner:after,
.tm-mobile .hamburger-inner:before,
.tm-mobile .hamburger.is-active .hamburger-inner,
.tm-mobile .hamburger.is-active .hamburger-inner:after,
.tm-mobile .hamburger.is-active .hamburger-inner:before {
  background: white;
  height: 2px;
}

.tm-mobile-menu-items {
  display: none;
  z-index: 5;
  max-height: 70vh;
  overflow: auto;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  margin-top: -30px;
}

.tm-mobile-menu-items .uk-button-default {
  width: 250px;
  margin: auto;
  padding-top: 8px;
}

/* Dropdown */
.uk-dropdown {
  max-width: 280px;
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.15);
  padding-top: 5px;
  background: #9d9fa2;
  border-radius: 0 0 4px 4px;
}

.uk-dropdown-nav {
  white-space: normal;
}

.uk-dropdown-nav>li>a {
  color: white;
}

.uk-dropdown-nav>li>a:hover,
.uk-dropdown-nav>li>a:focus {
  color: rgba(255, 255, 255, 0.7);
}

.uk-dropdown-bottom-left {
  margin: -15px 0 0 -10px !important;
}

/* Header */
header {
  z-index: 3;
  animation: 0.2s ease 0s normal forwards 1 fadein;
}

header .uk-iconnav>* {
  padding: 0 10px;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  66% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Content */
main {
  flex: 1;
}

/* Features */
.tm-section-features .tm-border-right,
.tm-section-features hr {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
  padding-bottom: 40px;
}

footer .uk-list-divider>li:nth-child(n + 2) {
  border-color: rgba(255, 255, 255, 0.05);
}

/* Welcome Popup */
.tm-modal-welcome {
  background: none !important
}

.tm-modal-welcome .uk-modal-dialog {
  background-color: black !important
}

.tm-modal-welcome .uk-modal-dialog h3 {
  color: white !important
}

.tm-modal-welcome .uk-modal-dialog .uk-text-success {
  color: #a7c991 !important
}

.tm-modal-welcome .uk-input {
  color: white !important;
  text-align: center !important;
  background: transparent !important;
  font-size: 18px !important
}

.tm-modal-welcome .uk-input:focus {
  border-color: #a7c991 !important
}

.tm-modal-welcome .uk-input:-webkit-autofill,
.tm-modal-welcome .uk-input:-webkit-autofill:hover,
.tm-modal-welcome .uk-input:-webkit-autofill:focus {
  -webkit-text-fill-color: white !important;
  -webkit-box-shadow: 0 0 0px 40rem #000 inset !important;
}

.tm-modal-welcome .uk-button {
  border-radius: 10px !important;
  background: white !important;
  color: #a7c991 !important;
  font-size: 24px !important
}

/* Promo */
.tm-img-promo{
  width:300px;
  position:absolute;
  top:-100px;
  left:10px;
  /* transform: translateY(-50%); */
  transform:rotate(-10deg)
}