﻿@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@300,400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@300;400&display=swap');

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0;
}


/* LAYOUT */

html {
    width: 100%;
    height: 100%;
}

body {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #404040;
    -webkit-text-size-adjust: none;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
    height: 100%;
    max-height: 100%;
    touch-action: none;
}

header {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 100;
    flex-shrink: 0;
    font-size: 14px;
}

header .logo, .pdf-logo {
    width: auto;
    max-height: 45px;
}

header .member-header, header .member-subheader {
    text-align: right;
}

header .member-subheader a {
    display: inline-block;
    margin-left: 15px;
    font-size: 18px;
    color: #404040;
    text-transform: uppercase;
    text-align: center;
}

header .member-subheader a:hover {
    color: #c8af68;
}

header .member-subheader a .text {
    display: block;
    font-size: 9px;
}

header .cards img {
    width: auto;
    height: 20px;
    border: 1px solid #c8af68;
    border-radius: 4px;
    padding: 2px;
    margin-top: 2px;
    margin-right: 1px;
}

header section.topheader {
    padding-top: 11px;
    padding-bottom: 9px;
    background: #f3f4ef;
}

header section.subheader {
    padding-top: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f3f4ef;
}

main {
    padding: 0px 0px 0px 0px;
    flex: 1 0 auto;
}

footer {
    background-color: #f3f4ef;
    margin-top: 18px;
    flex-shrink: 0;
}

section {
    position: relative;
    display: block;
}

section.fixed, .fixed-width {
    width: 100%;
    max-width: 1300px;
    margin: 0px auto 0px auto;
    padding: 0px 18px 0px 18px;
}

section:not(.no-margin-top) {
    margin-top: 24px;
}

section.padding {
    padding: 0px 12px 0px 12px;
}

section.banner img {
    width: 100%;
}

#site {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

img {
    max-width: 100%;
}

strong {
    font-weight: bold;
}

.content-block {
    margin: 42px 0px 24px 0px;
}

.flex-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.flex-column .flex-expand {
    flex: 1 0 auto;
}

.page-break-print {
    page-break-before: always;
}

.box {
    background: #f3f4ef;
    padding: 12px !important;
    border-radius: 6px;
}

.membernav-wrapper {
    display: inline-block;
    position: relative;
    cursor: pointer;
    z-index: 100;
}

.membernav-wrapper a,
.membernav-wrapper a:active,
.membernav-wrapper a:hover {
    color: #404040;
}

.membernav-wrapper i {
    margin-right: 3px;
}

.membernav-menu-wrapper {
    visibility: hidden;
    position: absolute;
    right: -5px;
    top: 100%;
    width: 250px;
    padding-top: 9px;
    opacity: 0;
}

.membernav-wrapper:hover .membernav-menu-wrapper,
.membernav-wrapper.open .membernav-menu-wrapper {
    visibility: visible;
    opacity: 1;
    right: 0;
    transition: all 0.3s;
}

.membernav-menu {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 6px;
}


.membernav-menu a {
    text-align: left;
    display: block;
    padding: 12px;
    color: #404040;
    text-decoration: none;
}

.membernav-menu a:hover {
    background: #f3f4ef;
}

/* FORMATTING */

h1, .h1 {
    margin: 0px 0px 24px 0px;
    color: #404040;
    font-family: 'Alegreya Sans SC';
    font-size: 40px;
    font-weight: 300;
    text-transform:  uppercase;
}

h2 {
    margin: 0px 0px 15px 0px;
    color: #bba154;
    font-family: 'Alegreya Sans SC';
    font-size: 28px;
    font-weight: 300;
    text-transform:  uppercase;
}

h3 {
    margin: 0px 0px 15px 0px;
    font-size: 14px;
    color: #bba154;
    font-weight: 400;
}

h4 {
    margin: 0px 0px 15px 0px;
    font-size: 16px;
    color: #404040; /*#8a8986*/
    font-weight: 700;
}

p {
    margin-top: 0px;
    margin-bottom: 15px;
}

pre {
    margin: 0px;
    font-family: inherit;
    font-size: inherit;
    white-space: pre-wrap;
}

a, a:active {
    color: #c8af68;
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
}

a.table-row {
    text-decoration: none;
    color: inherit;
}

div.hr {
    margin: 6px 0px 6px 0px;
    height: 1px;
    line-height: 1px;
    border-top: solid 1px #f7f8f9;
}

div.hr.no-margin {
    margin-top: 0px;
    margin-bottom: 0px;
}

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

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

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

.text-bottom {
    vertical-align: bottom !important;
}

.text-middle {
    vertical-align: middle !important;
}

.text-top {
    vertical-align: top !important;
}

.text-bold {
    font-weight: 700 !important;
}

.text-italic {
    font-style: italic;
}

.text-upper {
    text-transform: uppercase;
}

.text-small {
    font-size: 90% !important;
}

.text-danger, .text-bad {
    color: #ea212d !important;
}

.text-success, .text-good {
    color: #75b12a !important;
}

.text-light, .text-neutral {
    color: #8a8986 !important;
}

.text-note {
    color: #8c7e5e !important;
}

.text-link {
    color: #c8af68 !important;
}

.text-default {
    color: #666666 !important;
}

.h-subtext {
    font-size: 11pt;
    color: #8a8986;
    display: block;
    margin-top: 3px;
}

.h-subtext.text-small {
    font-size: 9pt !important;
}

.text-overflow-dots {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-no-wrap {
    white-space: nowrap;
}

.no-margin {
    margin: 0px !important;
}

.no-margin-top {
    margin-top: 0px !important;
}

.no-margin-bottom {
    margin-bottom: 0px !important;
}

.padding {
    padding: 24px !important;
}

.small-padding {
    padding: 9px !important;
}

.no-padding {
    padding: 0px !important;
}

.no-padding-top {
    padding-top: 0px !important;
}

.no-padding-bottom {
    padding-bottom: 0px !important;
}

.no-padding-left {
    padding-left: 0px !important;
}

.no-list-items {
    margin-top: 60px;
    color: #8a8986;
    text-align: center;
    font-size: 90%;
}

label, .label {
    display: inline-block;
    margin-bottom: 3px;
}

label:not(.input-checkbox):not(.input-radio), .label:not(.input-checkbox):not(.input-radio) {
    color: #8a8986;
    font-size: 90%;
}

.fw {
    display: block;
    width: 100%;
}

.hide, .filtered {
    display: none !important;
}

.disabled {
    opacity: .5;
    cursor: default;
}

.cursor-pointer {
    cursor: pointer;
}


/* MODAL */

.modal-container {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 4000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    transition: opacity .5s;
    cursor: default;
}

.modal-container:not(.open) {
    visibility: hidden;
    opacity: 0;
}

.modal-container.open {
    visibility: visible;
    opacity: 1;
}

.modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5000;
    width: 90%;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal:not(.clean) {
    padding: 18px;
    background-color: #ffffff;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.08);
}

.modal-container.slide-in-right .modal {
    left: auto;
    right: -100%;
    top: 0%;
    max-width: 100%;
    height: 100%;
    max-height: none;
    transform: none;
    transition: right .5s;
}

.modal-container.slide-in-right.open .modal {
    right: 0%;
}

.modal-lg {
    width: 1200px;
}

.modal-md {
    width: 900px;
}

.modal-sm {
    width: 600px;
}

.modal-xs {
    width: 450px;
}

.modal-sheet {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    padding: 9px 6px 6px 6px;
    position: relative;
    margin-bottom: 18px;
    border-bottom: solid 0px #f7f8f9;
}

.modal-header h2 {
    margin-bottom: 18px;
    color: inherit;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.modal-header .icon-btn-group {
    z-index: 10;
}

.modal-header .icon-btn-group.right .icon-btn {
    margin-left: 0px;
}

.modal-content {
    padding: 0px 6px 6px 6px;
    text-align: left;
    height: 100%;
    overflow: auto;
}

.modal-opener {
    cursor: pointer;
}


/* FORM/INPUTS */

form {
    margin: 0px;
}

.input-container {
    position: relative;
}

.input {
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    padding: 9px;
    background: none #f7f8f9;
    border: solid 1px #f7f8f9;
    border-radius: 3px;
    outline: 0;
    resize: none;
    transition: all .3s;
    -webkit-appearance: none;
}

.input:focus {
    background-color: #f9f8f7;
    /*
    border-color: #fbfcfc;
    */
}

.input.input-validation-error {
    /*color: #ea212d;*/
}

.input.lookup {
    padding-right: 30px;
}

.input.lookup.selectlist, .input.lookup.picklist {
    cursor: pointer;
}

.input.clean {
    background-color: transparent;
    border-color: transparent;
}

.input.headersearch {
    background: #ffffff;
    border-width: 0px;
}

.input.inline {
    margin-top: -9px;
    margin-bottom: -9px;
}

.input-radio, .input-checkbox {
    cursor: pointer;
    opacity: 1 !important;
    margin-top: 3px;
    margin-left: 30px;
}

.input-radio input, .input-checkbox input {
    display: none;
}

.input-radio span::before, .input-checkbox span::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #f7f8f9;
    background-color: #f7f8f9;
    margin-left: -30px;
    margin-right: 6px;
    padding: 5px 4px 4px 5px;
    transition: color .3s;
}

.input-radio span::before {
    border-radius: 50%;
    content: '\f111';
    font-size: 7pt;
    border: solid 2px #f7f8f9;
}

.input-checkbox span::before {
    border-radius: 3px;
    content: '\f00c';
}

.input-radio input:checked + span::before, .input-checkbox input:checked + span::before {
    color: #c8af68;
}

.input-checkbox.checkbox-delete span::before {
    font-weight: 400;
    background-color: transparent;
    color: inherit;
    font-size: inherit;
    border-radius: 0px;
    padding: unset;
    content: '\f2ed';
    transition: color .3s;
}

.input-checkbox.checkbox-delete input:checked + span::before {
    content: '\f2ed';
    color: #ea212d;
}

.input-checkbox.tag {
    margin: 0px 3px 6px 0px;
}

.input-checkbox.tag span {
    font-size: 10pt;
}

.input-checkbox.tag span::before {
    display: none;
}

.input-icon {
    position: absolute;
    right: 7px;
    top: 10px;
    z-index: 20;
}

.input-icon + .input {
    padding-right: 30px;
}

.input-icon.left {
    left: 7px;
    right: auto;
}

.input-icon.left + .input {
    padding-left: 36px;
    padding-right: 9px;
}

.input-icon:not(.left).second {
    right: 21px;
    top: 7px;
}

.input.upload {
    padding-right: 66px;
}

span.input-icon {
    color: #c8af68;
}

.btn {
    border: solid 1px #c8af68;
    border-radius: 3px;
    outline: 0;
    background: none #c8af68;
    color: #ffffff;
    font-family: inherit;
    font-weight: normal;
    font-size: 14px;
    padding: 9px 8px 8px 8px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    opacity: .9;
    -webkit-appearance: none;
    transition: all .3s;
}

.btn:hover {
    color: #ffffff;
    text-decoration: none;
    opacity: 1;
}

.btn.simple {
    background: none #ffffff;
    color: #c8af68;
}

.btn.simple:hover {
}

.btn.clean {
    background: none transparent;
    color: #8a8986;
    border-color: transparent;
}

.btn.clean:hover {
}

.btn.danger {
    background: none #ea212d;
    border-color: #ea212d;
    color: #ffffff;
}

.btn.danger.simple {
    background: none #ffffff;
    color: #ea212d;
}

.btn.danger.simple:hover {
    color: #ffffff;
}

.btn.danger.clean {
    background: none #ffffff;
    color: #8a8986;
    border-color: transparent;
}

.btn.danger.clean:hover {
    background: none #ffffff;
    color: #ea212d;
    border-color: transparent;
}

.btn.danger:hover {
    background: none #e2202c;
}

.btn.success {
    background: none #75b12a;
    border-color: #75b12a;
    color: #ffffff;
}

.btn.success.simple {
    background: none #ffffff;
    color: #75b12a;
}

.btn.success.simple:hover {
    color: #ffffff;
}

.btn.buy.simple .input-checkbox span::before {
    background-color: transparent;
    content: '\f291';
    color: #c8af68;
}

.btn.buy:not(.simple) .input-checkbox span::before {
    background-color: transparent;
    content: '\f291';
    color: #ffffff;
}

::placeholder {
    color: #8a8986;
    font-size: 10pt;
}

.validation-summary-errors, .field-validation-error {
    color: #ea212d;
    font-size: 90%;
}

.validation-summary-errors ul {
    padding-left: 18px;
}

.field-validation-error {
    padding: 6px 6px 6px 0px;
    display: block;
    text-align: left;
}


/* GRID */

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0px;
    margin: 0px -6px 0px -6px;
}

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

.grid.flex-start .griditem {
    margin-left: 6px;
    margin-right: 6px;
}

.grid.no-equal-height {
    align-items: flex-start;
}

.griditem {
    margin-bottom: 12px;
    padding: 24px;
    position: relative;
}

.griditem.no-padding {
    padding: 0px;
}

.griditem.content-padding {
    padding-top: 0px !important;
    padding-left: 0px !important;
}

.griditem.border {
    border: solid 1px #f7f8f9;
}

.grid.datagrid > .griditem {
    padding: 6px 6px 6px 0px;
}

.grid.formgrid > .griditem {
    padding: 3px 0px 3px 0px;
}

.griditem.buttons {
    float: none;
    clear: both;
    text-align: right;
    margin-top: 12px;
    margin-bottom: 0px;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.griditem.buttons + .griditem.buttons {
    margin-top: 6px;
}

.griditem.buttons .btn {
    display: inline-block;
    min-width: 100px;
    text-decoration: none;
}

.griditem.buttons .btn:not(:first-of-type) {
    margin-left: 6px;
}

.griditem.buttons .button-screener.visible {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #fff;
    opacity: .01;
}

.grid.formgrid h2 {
    margin-bottom: 3px;
}

.grid.formgrid .formgrid-header:first-of-type {
    margin-top: 18px;
}

.modal-content .grid.formgrid .formgrid-header:first-of-type {
    margin-top: 0px;
}

.grid.formgrid .formgrid-header:not(:first-of-type) {
    margin-top: 36px;
}

.gridheader::after {
    content: '';
    clear: both;
    display: table;
    margin-bottom: 15px;
}

.griditem.col-0 {
    width: 0px;
    margin: 0px;
    overflow: hidden;
}

.griditem.col-1 {
    width: calc(8.3333% - 12px);
}

.griditem.col-2 {
    width: calc(16.6666% - 12px);
}

.griditem.col-3 {
    width: calc(24.9999% - 12px);
}

.griditem.col-4 {
    width: calc(33.3332% - 12px);
}

.griditem.col-5 {
    width: calc(41.6665% - 12px);
}

.griditem.col-6 {
    width: calc(49.9998% - 12px);
}

.griditem.col-7 {
    width: calc(58.3331% - 12px);
}

.griditem.col-8 {
    width: calc(66.6664% - 12px);
}

.griditem.col-9 {
    width: calc(74.9997% - 12px);
}

.griditem.col-10 {
    width: calc(83.333% - 12px);
}

.griditem.col-11 {
    width: calc(91.6663% - 12px);
}

.griditem.col-12 {
    width: calc(100% - 12px);
}


/* TABLE */

.table {
    display: table;
    width: 100%;
}

.table.fixed {
    table-layout: fixed;
}

.table-head {
    display: table-header-group;
}

.table-body {
    display: table-row-group;
}

.table-row {
    display: table-row;
}

.table-row:hover {
    background-color: #f9fbff !important;
}

.table.no-hover > .table-row, .table.no-hover > .table-row:hover, .table-row.no-hover:hover, .table-row.header, .table-row.footer {
    background-color: transparent !important;
}

.table-row.header {
    color: #9aa3b0;
    text-transform: uppercase;
    font-size: 90%;
}

.table-row.header .table-cell.col-sort {
    cursor: ns-resize;
    user-select: none;
}

.table:not(.no-border) > .table-row.header:not(.no-border) > .table-cell {
    border-width: 2px;
}

.table-row.pick {
    cursor: pointer;
}

.table-row.footer {
    font-weight: bold;
}

.table-row.footer .table-cell {
    border-bottom-width: 0px;
}

.table.no-border > .table-body > .table-row > .table-cell, .table.no-border > .table-row > .table-cell, .table-row.no-border > .table-cell, .table-cell.no-border {
    border-width: 0px;
}

.table.no-padding > .table-row > .table-cell, .table-row.no-padding > .table-cell, .table-cell.no-padding {
    padding: 0px;
}

.table-cell {
    display: table-cell;
    border-bottom: solid 1px #f7f8f9;
    padding: 15px;
    position: relative;
    vertical-align: middle;
}

.table.boxed > .table-row > .table-cell {
    border: solid 2px #ffffff;
}

.table-cell.indent {
    padding-left: 24px;
}

.table-cell.actions {
    text-align: right;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.table-cell.actions i {
    margin-left: 9px;
    margin-top: 2px;
}

.table-cell.actions > a, .table-cell.actions > span:not(.tag), .table-cell.actions > .action {
    color: #0558f7;
    cursor: pointer;
    display: inline-block;
}

.table-cell.avatars {
    width: 70px;
}

.table-cell.avatars .avatar {
    margin-top: 3px;
}

.table-cell.content-fit {
    width: 1px;
    white-space: nowrap;
}


/* TIMELINE */

.timeline {
    position: relative;
    padding: 24px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 13.5%;
    width: 2px;
    background: repeating-linear-gradient(
            to bottom,
            #ccc,
            #ccc 4px,
            transparent 4px,
            transparent 8px
    );
    transform: translateX(-20%);
    z-index: 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 3rem;
}

.timeline-date {
    text-align: center;
    padding-right: 1rem;
    font-weight: bold;
    color: #333;
    width: 10%;
}

.timeline-content {
    padding-left: 1rem;
    position: relative;
    z-index: 1;
    width: 80%;
}

.timeline-marker {
    position: absolute;
    top: 2px;
    left: 13.5%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid #c8af68;
    border-radius: 50%;
    z-index: 2;
}

.timeline-image-container {
    float: left;
    margin-right: 1rem;
    position: relative;
}

.timeline-image {
    width: 63px;
    height: 63px;
    object-fit: cover;
    border: 1px solid #c8af68;
    padding: 2px;
    border-radius: 50%;
}

.timeline-image:not(:first-child) {
    width: 23px;
    height: 23px;
    position: absolute;
    bottom: 0;
    background-color: #fff;
}

.timeline-image:nth-child(2) {
    right: -5px;
    bottom: 10px;
    z-index: 3;
}

.timeline-image:nth-child(3) {
    right: 10px;
    z-index: 2;
}

.timeline-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 62px;
}

.cb-fill-image-container {
    display: inline-block;
    padding: 30%;
    margin: 0 auto;
    border-radius: 50%;
    border: solid 2px #c8af68;
    position: relative;
}

.cb-fill-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    border-radius: 50%;
    padding: 6px;
}

.cb-fill-image-container:hover .cb-fill-image-overlay {
    opacity: 1;
    transition: opacity 0.3s;
}

.cb-fill-image-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    padding: 6px;
    background: rgba(0, 0, 0, .4);
    display: flex;
    flex-direction: row;
    align-items: center;
    opacity: 0;
}

.cb-fill-image-overlay a {
    display: block;
    flex: 1;
    text-align: center;
    font-size: 18px;
}

.cb-fill-image-overlay a:hover {
    color: #fff;
}


/* RESPONSIVE */

@media (max-width: 1200px) {

    .griditem.no-padding-lg {
        padding: 0px;
    }

    .griditem.col-lg-12.content-padding {
        padding-right: 0px !important;
    }

    .griditem.no-margin-bottom-lg {
        margin-bottom: 0px;
    }

    .griditem.col-lg-0 {
        width: 0px;
        margin: 0px;
        overflow: hidden;
    }

    .griditem.col-lg-1 {
        width: calc(8.3333% - 12px);
    }

    .griditem.col-lg-2 {
        width: calc(16.6666% - 12px);
    }

    .griditem.col-lg-3 {
        width: calc(24.9999% - 12px);
    }

    .griditem.col-lg-4 {
        width: calc(33.3332% - 12px);
    }

    .griditem.col-lg-5 {
        width: calc(41.6665% - 12px);
    }

    .griditem.col-lg-6 {
        width: calc(49.9998% - 12px);
    }

    .griditem.col-lg-7 {
        width: calc(58.3331% - 12px);
    }

    .griditem.col-lg-8 {
        width: calc(66.6664% - 12px);
    }

    .griditem.col-lg-9 {
        width: calc(74.9997% - 12px);
    }

    .griditem.col-lg-10 {
        width: calc(83.333% - 12px);
    }

    .griditem.col-lg-11 {
        width: calc(91.6663% - 12px);
    }

    .griditem.col-lg-12 {
        width: calc(100% - 12px);
    }

    .no-padding-lg {
        padding: 0px !important;
    }

    .no-margin-lg {
        margin: 0px !important;
    }

    .show-lg {
        display: inline-block !important;
    }

    .table-row.show-lg {
        display: table-row !important;
    }

    .table-cell.show-lg {
        display: table-cell !important;
    }

    .hide-lg, .table-row.hide-lg, .table-cell.hide-lg {
        display: none !important;
    }

    .text-center-lg {
        text-align: center !important;
    }

}


@media (max-width: 900px) {

    h1, .h1 {
        font-size: 38px;
    }

    .griditem.col-md-0 {
        width: 0px;
        margin: 0px;
        overflow: hidden;
    }

    .griditem.col-md-1 {
        width: calc(8.3333% - 12px);
    }

    .griditem.col-md-2 {
        width: calc(16.6666% - 12px);
    }

    .griditem.col-md-3 {
        width: calc(24.9999% - 12px);
    }

    .griditem.col-md-4 {
        width: calc(33.3332% - 12px);
    }

    .griditem.col-md-5 {
        width: calc(41.6665% - 12px);
    }

    .griditem.col-md-6 {
        width: calc(49.9998% - 12px);
    }

    .griditem.col-md-7 {
        width: calc(58.3331% - 12px);
    }

    .griditem.col-md-8 {
        width: calc(66.6664% - 12px);
    }

    .griditem.col-md-9 {
        width: calc(74.9997% - 12px);
    }

    .griditem.col-md-10 {
        width: calc(83.333% - 12px);
    }

    .griditem.col-md-11 {
        width: calc(91.6663% - 12px);
    }

    .griditem.col-md-12 {
        width: calc(100% - 12px);
    }

    .griditem.col-md-12.content-padding {
        padding-right: 0px !important;
    }

    .no-padding-md {
        padding: 0px !important;
    }

    .no-margin-md {
        margin: 0px !important;
    }

    .show-md {
        display: inline-block !important;
    }

    .table-row.show-md {
        display: table-row !important;
    }

    .table-cell.show-md {
        display: table-cell !important;
    }

    .hide-md, .table-row.hide-md, .table-cell.hide-md {
        display: none !important;
    }

    .text-center-md {
        text-align: center !important;
    }

}


@media (max-width: 600px) {

    header .logo, .pdf-logo {
        width: auto;
        max-height: 40px;
    }

    header .member a .text {
        display: none;
    }

    .modal-container {
        background-color: #ffffff;
    }

    .modal:not(.clean) {
        border-width: 0px;
        box-shadow: none;
    }

    .griditem {
        padding: 18px;
    }

    .griditem.col-sm-0 {
        width: 0px;
        margin: 0px;
        overflow: hidden;
    }

    .griditem.col-sm-1 {
        width: calc(8.3333% - 12px);
    }

    .griditem.col-sm-2 {
        width: calc(16.6666% - 12px);
    }

    .griditem.col-sm-3 {
        width: calc(24.9999% - 12px);
    }

    .griditem.col-sm-4 {
        width: calc(33.3332% - 12px);
    }

    .griditem.col-sm-5 {
        width: calc(41.6665% - 12px);
    }

    .griditem.col-sm-6 {
        width: calc(49.9998% - 12px);
    }

    .griditem.col-sm-7 {
        width: calc(58.3331% - 12px);
    }

    .griditem.col-sm-8 {
        width: calc(66.6664% - 12px);
    }

    .griditem.col-sm-9 {
        width: calc(74.9997% - 12px);
    }

    .griditem.col-sm-10 {
        width: calc(83.333% - 12px);
    }

    .griditem.col-sm-11 {
        width: calc(91.6663% - 12px);
    }

    .griditem.col-sm-12 {
        width: calc(100% - 12px);
    }

    .griditem.col-sm-12.content-padding {
        padding-right: 0px !important;
    }

    .griditem.buttons {
        text-align: center;
        flex-direction: column-reverse;
    }

    .griditem.buttons.no-reverse {
        flex-direction: column;
    }

    .griditem.buttons .btn {
        width: 100%;
        margin: 9px 0px 0px 0px !important;
    }

    .no-padding-sm {
        padding: 0px !important;
    }

    .no-margin-sm {
        margin: 0px !important;
    }

    .show-sm {
        display: inline-block !important;
    }

    .table-row.show-sm {
        display: table-row !important;
    }

    .table-cell.show-sm {
        display: table-cell !important;
    }

    .hide-sm, .table-row.hide-sm, .table-cell.hide-sm {
        display: none !important;
    }

    .text-center-sm {
        text-align: center !important;
    }

}


@media (-webkit-min-device-pixel-ratio: 2) {

    body.mobile .input-icon {
        top: 12px;
    }

}
