:root {
    --shadow: 0 1px 2px 0 rgba(0,0,0,.1);
    --radius: 8px;
    --brand: #FF5A5F;
    --grey: #6f6f6f;
    --blue: #3897F0;
    --green: #4cd964;
    --orange: #F6C927;
    --red: rgb(255, 56, 92);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
    --font-weight-bold: 600;
    --font-weight-medium: 500;
    --font-weight-normal: 400;
    /* --color-text: hsl(222deg, 22%, 5%); */
    --text-color: rgb(55, 53, 47);
    --light-text-color: rgba(55, 53, 47, 0.6);
    --hover-bg-color: #f9f9f9;
    --bg-color: #F9F5F1;
    --border: 1px solid #EBEBEB;
    --border-color: #EDEDEC;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0 0 40px 0;
    background-color: #fff;
    /* background-color: #F9F5F1; */
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    /* -webkit-font-smoothing: antialiased; */
    padding-top: 71px;
}

body.bg {
    background-color: #f9f9f9;
}

.h2 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--text-color);
    font-weight: var(--font-weight-bold);
}

.info {
    font-size: 14px;
    color: var(--light-text-color);
    line-height: 1.5;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.ml-5 {
    margin-left: 5px;
}

.mt-30 {
    margin-top: 30px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.flex {
    display: flex;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.justify-start {
    justify-content: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.text-right {
    text-align: right !important;
}

.container {
    max-width: 1070px;
    margin-left: auto;
    margin-right: auto;
    /* padding-left: 10px;
    padding-right: 10px; */
}

@media (min-width: 1024px) {
    .container-left {
        width: 200px;
    }

    .container-right {
        width: 830px;
    }

    .container-340 {
        width: 340px;
    }

    .container-710 {
        width: 710px;
    }
}

.hidden {
    display: none;
}

.text-light {
    color: var(--light-text-color);
}

.font-normal {
    font-weight: var(--font-weight-normal);
}

.header {
    background: #fff;
    /* box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 6px; */
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.header .container {
    height: 70px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.header .logo-container {
    display: flex;
    align-items: center;
}

.header .logo {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.header .logo:hover {
    opacity: 0.9;
}

.header .logo:active {
    opacity: 0.8;
}

.header .logo img {
    display: block;
}

.header .header-user {
    margin-left: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.header .header-user .photo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    position: relative;
}

.header .header-user .photo:hover {
    opacity: 0.8;
}

.header .header-user .photo:active {
    opacity: 0.5;
}

.header .header-user .photo.placeholder {
    border: 1px solid #ddd;
}

.header .header-user .team {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -2px;
    right: -4px;
    box-shadow: var(--shadow);
}

.dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #fff;
    font-size: 14px;
    z-index: 10;
}

.dropdown.left {
    right: auto;
    left: 0;
    top: 60px;
}

.dropdown .link {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 12px 14px;
    border-bottom: 1px solid #e8e8e8;
}

.dropdown .link:last-child {
    border-bottom: none;
}

.dropdown .link:first-child {
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.dropdown .link:last-child {
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

.dropdown a.link {
    color: #333;
    display: flex;
    align-items: center;
}

.dropdown .link:hover {
    background: #f9f9f9;
}

.dropdown .link:active {
    background: #f0f9fd;
}

.dropdown-link-logo {
    display: block;
    width: 20px;
    margin-right: 5px;
}

.header .buttons {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header .buttons .button {
    display: block;
    background-color: var(--blue);
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    text-decoration: none;
    padding: 12px 14px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    font-weight: var(--font-weight-medium);
    border: 1px solid var(--blue);
    margin-left: auto;
}

.header .buttons .button:hover {
    background-color: transparent;
    color: var(--blue);
}

.header .buttons .button:active {
    opacity: 0.5;
}

.header .buttons .button.gray {
    background: transparent;
    border-color: transparent;
    color: #333;
    box-shadow: none;
}

.header .buttons .button.gray:hover {
    background: #f1f1f1;
}

.header.bg .buttons .button.gray {
    border-color: transparent;
    background: transparent;
    color: #f9f9f9;
}

.header.bg .buttons .button.gray:hover {
    background: #f9f9f9;
    color: #333;
}

.topmenu {
    display: flex;
}

.topmenu .item {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    color: var(--text-color);
    padding: 0 10px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.topmenu .item.desktop {
    display: none;
}

@media (min-width: 1024px) {
    .topmenu .item.desktop {
        display: flex;
    }
}

.topmenu a {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    color: #000;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.topmenu a:hover {
    color: var(--blue);
}

.topmenu a.desktop {
    display: none;
}

@media (min-width: 1024px) {
    .topmenu a.desktop {
        display: flex;
    }

    .topmenu .mobile {
        display: none;
    }
}

.vermenu {
    background-color: var(--bg-color);
    border-radius: 4px;
}

.vermenu-links {
    padding: 8px 0;
}

.vermenu-link {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    padding: 5px 15px;
}

.vermenu-link-active {
    background-color: rgba(55, 53, 47, 0.08);
    font-weight: var(--font-weight-bold);
}

.vermenu-link:hover {
    background-color: rgba(55, 53, 47, 0.08);
}

.vermenu-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: var(--text-color);
}

.vermenu-icon a svg {
    width: 20px;
}

.vermenu-text {
    font-size: 14px;
    line-height: 20px;
}

.user {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.user-photo {
    width: 30px;
    height: 30px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin-right: 6px;
}

.user-name {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
}

.user-tagline {
    font-size: 12px;
    line-height: 16px;
    color: var(--light-text-color);
}

.vermenu-user {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(55, 53, 47, 0.08);
    padding: 15px 15px;
    text-decoration: none;
    color: var(--text-color);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.vermenu-user:hover {
    background-color: rgba(55, 53, 47, 0.04);
}

.vermenu-user-photo {
    width: 30px;
    height: 30px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin-right: 6px;
}

.vermenu-user-name {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
}

.vermenu-user-tagline {
    font-size: 12px;
    line-height: 16px;
    color: var(--light-text-color);
}

.profile-user {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    background: #fff;
}

.profile-user-inside {
    max-width: 1070px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.profile-user-photo {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin-right: 15px;
}

.profile-user-name {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-color);
}

.profile-user-tagline {
    font-size: 14px;
    line-height: 1.5;
    color: var(--light-text-color);
}

.block {
    background-color: #fff;
    /* box-shadow: var(--shadow); */
    border-radius: var(--radius);
    /* border: var(--border); */
    border: 2px solid var(--border-color);
}

.block .inside {
    padding: 20px;
}

.block .text p {
    line-height: 1.6;
}

.block .text p:first-child {
    margin-top: 0;
}

.block .text p:last-child {
    margin-bottom: 0;
}

.block .row {
    margin-bottom: 20px;
    font-size: 15px;
}

.block a.row {
    display: block;
    text-decoration: none;
}

.block a.row:first-child {
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.block a.row:last-child {
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

.block a.row:hover {
    background-color: #f9f9f9;
}

.block a.row:active {
    background-color: #f0f9fd;
}

.block .row:last-child {
    margin-bottom: 0;
}

.block .row.border {
    border-bottom: 1px solid #e8e8e8;
}

.block .row.border:last-child {
    border-bottom: 0;
}

.block .row.buttons {
    display: flex;
    justify-content: space-between;
}

.block .row .user {
    display: block;
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
}

.block .row .user .photo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
}

.block .row .user .photo.placeholder {
    border: 1px solid #ddd;
}

.block .row .user .name {
    font-weight: var(--font-weight-normal);
    font-size: 14px;
}

.block .row .user.small .name {
    font-size: 13px;
}

.block .row .user.small .photo {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.block ul li {
    line-height: 1.6;
}

.block ul:last-child {
    margin-bottom: 0;
}

.block .tags {
    display: flex;
    flex-flow: wrap;
    margin: -3px;
}

.block .tag {
    background: #f2f3f4;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    padding: 6px;
    color: #494949;
    margin: 3px;
}

.block .tag:hover {
    background-color: #e8e8e8;
}

.gallery {
    width: 100%;
    height: 190px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.gallery .placeholder {
    display: inline-block;
    width: 380px;
    height: 380px;
    background: #f3f3f3;
}

@media all and (min-width: 1100px) {
    .gallery {
    height: 380px;
    }
}

.gallery__item {
    display: inline-block;
    height: 190px;
}

@media all and (min-width: 1100px) {
    .gallery__item {
    height: 380px;
    }
}

.thumbnails {
    height: 60px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
}

.thumbnails .item {
    display: block;
    width: 80px;
    height: 60px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    border: 2px solid #e8e8e8;
    position: relative;
    margin-right: 5px;
}

.thumbnails .item.placeholder {
    background: #e8e8e8;
}

.thumbnails .item .delete {
    width: 20px;
    position: absolute;
    top: 4px;
    right: 4px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
    border-radius: 50%;
    background: #333;
}

.thumbnails .item .delete:hover {
    opacity: 0.8;
}

.thumbnails .item .delete:active {
    opacity: 0.6;
}

.thumbnails a.item:hover {
    opacity: 0.8;
}

.thumbnails a.item:active {
    opacity: 0.6;
}

.block-user {
    display: block;
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
}

.block-user .photo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
}

.block-user .photo.placeholder {
    border: 1px solid #ddd;
}

.block-user .name {
    font-weight: var(--font-weight-normal);
    font-size: 14px;
    text-decoration: none;
}

.form .button {
    cursor: pointer;
    display: block;
    background-color: var(--blue);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    padding: 12px 14px;
    font-weight: var(--font-weight-medium);
    border: 1px solid var(--blue);
    margin: 0;
    text-transform: uppercase;
}

.form .button:hover {
    background: transparent;
    color: var(--blue);
}

.form .button:active {
    opacity: 0.5;
}

.form .button.border {
    display: block;
    background: transparent;
    border-color: var(--blue);
    color: var(--blue);
}

.form .button.grey {
    display: block;
    background: transparent;
    border-color: #e8e8e8;
    color: #000;
}

.form .button.grey:hover {
    background: #e8e8e8;
    border-color: #e8e8e8;
}

.buttonlink {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px;
    border-radius: var(--radius);
    background: var(--bg-color);
    text-decoration: none;
    cursor: pointer;
    padding: 14px 14px;
}

.buttonlink.desktop {
    display: none;
}

.buttonlink.mobile {
    display: flex;
}

@media (min-width: 1024px) {
    .buttonlink.desktop {
        display: flex;
    }

    .buttonlink.mobile {
        display: none;
    }
}

.buttonlink:hover {
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;
}

.buttonlink:active {
    opacity: 0.8;
}

.buttonlink .logo {
    display: block;
    margin-right: 12px;
    filter: saturate(0%) brightness(75%) contrast(400%);
    opacity: 0.3;
}

.buttonlink .title {
    color: #000;
    font-size: 13px;
    line-height: 20px;
    font-weight: var(--font-weight-medium);
    line-height: 1;
    padding-bottom: 8px;
}

.buttonlink .domain {
    color: #757575;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    line-height: 1;
}

.form .label {
    display: block;
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    margin-bottom: 10px;
}

.form .note {
    font-size: 13px;
    color: #aaa;
    margin-top: 5px;
    line-height: 1.6;
}

.form .select {
    box-sizing: border-box;
    width: 100%;
}

.form .select.invalid {
    border-color: var(--red);
}

.form .field {
    font-family: var(--font-family);
    font-weight: var(--font-weight-light);
    background-color: rgba(242, 241, 238, 0.6);
    border: 1px solid #DFDFDD;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 13px;
}

.form .field:focus {
    border-color: #3267d6;
    outline: none;
    box-shadow: 0 0 0 3px #cce5ff;
}

.form textarea.field {
    line-height: 1.4;
}

.form .field.invalid {
    border-color: var(--red);
}

.form .field:focus {
    border-color: rgba(47,160,255,.6);
    outline: none;
}

.form .button {
    cursor: pointer;
    display: block;
    background-color: var(--blue);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    padding: 12px 14px;
    font-weight: var(--font-weight-medium);
    border: 1px solid var(--blue);
    margin: 0;
    text-transform: uppercase;
}

.form .button:hover {
    background: transparent;
    color: var(--blue);
}

.form .button:active {
    opacity: 0.5;
}

.form .button.border {
    display: block;
    background: transparent;
    border-color: var(--blue);
    color: var(--blue);
}

.form .button.grey {
    display: block;
    background: transparent;
    border-color: #e8e8e8;
    color: #000;
}

.form .button.grey:hover {
    background: #e8e8e8;
    border-color: #e8e8e8;
}

.form .upload {
    width: 80px;
    height: 80px;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-size: contain;
    background-position: center;
    position: relative;
}

.form .upload.missing {
    border-color: var(--red);
}

.form .upload:hover {
    opacity: 0.8;
}

.form .upload:active {
    opacity: 0.5;
}

.form .image-upload {
    width: 80px;
    height: 80px;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-position: center;
    position: relative;
}

.form .image-upload .plus-container {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.form .image-upload .plus-container:hover {
    opacity: 0.5;
}

.form .image-upload .remove {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    cursor: pointer;
}

.form .image-upload .remove:hover {
    opacity: 0.5;
}

.form .image-upload .remove {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
}

.team-timezones-logos {
    display: flex;
    margin-left: 15px;
    justify-content: left;
    align-items: center;
    text-decoration: none;
}

.team-timezones-logos:hover {
    text-decoration: none;
    opacity: 0.9;
}

.team-timezones-logos:active {
    text-decoration: none;
    opacity: 0.8;
}

.team-timezones-logo {
    width: 34px;
    height: 34px;
    margin-left: -15px;
    background-color: #fff;
    border: 2px solid #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
}

.team-timezones-text {
    color: var(--color-text);
    font-size: 14px;
    margin-left: 5px;
}

/* The switch - the box around the slider */

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
  margin-right: 5px;
}

.switch__container {
  font-size: 13px;
  line-height: 17px;
}

/* Hide default HTML checkbox */

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  transform: translateX(13px);
}

/* Rounded sliders */

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

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

.error {
    background: var(--red);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 20px 0;
    text-align: center;
}

.success {
    background: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 20px 0;
    text-align: center;
}

.table {
    width: 100%;
    border-spacing: 0;
    font-size: 15px;
    background: #fff;
}

.table th {
    text-align: left;
    padding: 16px 12px;
    color: #24292e;
    border-bottom: 1px solid #e8e8e8;
    font-weight: var(--font-weight-bold);
    background: #fff;
}

.table td {
    text-align: left;
    padding: 12px;
    vertical-align: middle;
    font-size: 14px;
}

.table tr td {
    border-bottom: 1px solid #e8e8e8;
}

.table td a {
    color: #000;
}

.filterbtns {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.filterbtn svg {
    width: 16px;
    margin-right: 5px;
}

.filterbtns-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .filterbtns-desktop {
        display: block;
    }
}

.filterbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #494949;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    margin-bottom: 15px;
    margin-right: 5px;
    /* box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px; */
    border: var(--border);
    border-radius: var(--radius);
    padding: 10px 10px;
    background: #fff;
    white-space: nowrap;
}

.filterbtn.filterbtn--brand-color {
    border-color: var(--brand-color);
    color: var(--brand-color);
}

a.filterbtn {
    cursor: pointer;
}

a.filterbtn:hover {
    background: #F7F7F7;
    text-decoration: none;
}

a.filterbtn:active {
    opacity: 0.8;
}

.filterbtn .remove {
    width: 16px;
    margin-left: 5px;
}

.filterbtngroup {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #494949;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    margin-bottom: 15px;
    /* box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px; */
    border: var(--border);
    border-radius: var(--radius);
    background: #fff;
    white-space: nowrap;
}

.filterbtngroup:not(:last-child) {
    margin-right: 5px;
}

.filterbtngroup .btn {
    padding: 10px 10px;
    color: #494949;
    text-decoration: none;
    cursor: pointer;
}

.filterbtngroup .btn:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.filterbtngroup .btn:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.filterbtngroup .btn:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.filterbtngroup .btn:hover {
    background: #F7F7F7;
}

.filterbtngroup .btn.active {
    background: #f0f9fd;
}

.filterbtngroup .txt {
    padding: 10px 10px;
    color: #494949;
}

.filterbtngroup .txt:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.filter {
    background-color: var(--bg-color);
    border-radius: 4px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter .field {
    font-family: var(--font-family);
    font-weight: var(--font-weight-light);
    background-color: #fff;
    border: 1px solid #DFDFDD;
    border-radius: 4px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 13px;
}

.filter .field:focus {
    border-color: #3267d6;
    outline: none;
    box-shadow: 0 0 0 3px #cce5ff;
}

.filter .buttons {
    margin-left: auto;
    display: flex;
    width: 200px;
    justify-content: flex-end;
    align-items: center;
}

.filter .button {
    cursor: pointer;
    display: block;
    background-color: #333;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    padding: 12px 14px;
    font-weight: var(--font-weight-medium);
    border: 1px solid #333;
    margin: 0;
    text-transform: uppercase;
    margin-left: 5px;
}

.filter .button:hover {
    background: transparent;
    color: #333;
}

.filter .button:active {
    opacity: 0.5;
}

.filter .button.border {
    background-color: transparent;
    color: #333;
}

.filter .button:hover {
    background: #333;
    color: #fff;
}

.filter .button:active {
    opacity: 0.5;
}

