/* START OF RANGE SLIDER */

/*=============
    Adding tick marks
=========================*/
.range-slider {
    flex: 1;
}
.range-slider label {
    margin-bottom: 12px;
}

.range-slider .sliderticks {
    display: flex;
    justify-content: space-between;
    padding: 0 7px;
}

.range-slider .sliderticks span {
    display: flex;
    justify-content: center;
    width: 1px;
    height: 6px;
    background: #d3d3d3;
    background: rgba(223, 238, 255, 0.8);
    line-height: 30px;
    left: 0px;
    position: relative;
}

/*=============
    End tick marks
=========================*/


.range-slider input[type="range"] {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none; 
    /* creating a custom design */
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    /*  overflow: hidden;  remove this line*/

    /* New additions */
    height: 6px;
    background: #ccc;
}

/* Thumb: webkit */
.range-slider input[type="range"]::-webkit-slider-thumb {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none; 
    /* creating a custom design */
    height: 15px;
    width: 15px;
    background-color: #179BAD;
    border-radius: 50%;
    border: none;

    /* box-shadow: -407px 0 0 400px #179BAD; emove this line */
    transition: .2s ease-in-out;
}

/* Thumb: Firefox */
.range-slider input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #179BAD;
    border-radius: 50%;
    border: none;

    /* box-shadow: -407px 0 0 400px #179BAD; emove this line */
    transition: .2s ease-in-out;
}

/* Hover, active & focus Thumb: Webkit */

.range-slider input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 10px rgba(223, 238, 255, 0.2)
}
.range-slider input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(223, 238, 255, 0.2)
}
.range-slider input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(223, 238, 255, 0.2)
}

/* Hover, active & focus Thumb: Firfox */

.range-slider input[type="range"]::-moz-range-thumb:hover {
    box-shadow: 0 0 0 10px rgba(223, 238, 255, 0.2)
}
.range-slider input[type="range"]:active::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(223, 238, 255, 0.2)
}
.range-slider input[type="range"]:focus::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(223, 238, 255, 0.2)
}

/*=============
    Aesthetics 
=========================*/

.range {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
    color: rgba(223, 238, 255, 0.8);
    padding-bottom: 6px;
}

.range .value {   
    width: 68px;
    top: 8px;
    position: relative;
}

.value span {
    font-size: 20px; 
}

/* END OF RANGE SLIDER */

.alert {
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}

.fa.spinning {
    animation: spin 1.5s infinite linear;
    -webkit-animation: spin2 1.5s infinite linear;
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg);
    }
    to {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

.loader-btn {
    display: none;
}

.social-alert {
    display: none;
}

.newsletter-alert {
    display: none;
}

#profileDeletion {
    font-size: 14px;
}

.deletion-loader {
    display: none;
}

.deletion-alert {
    display: none;
}

.alert dl,
.alert ol,
.alert ul {
    margin-bottom: 0;
}

.cookie-list .cookie-items {
    font-style: italic;
}

.auto-width {
    width: auto !important;
}

header a:hover {
    text-decoration: none !important;
}

header .dropdown {
    margin-right: 15px;
}

body {
    color: rgba(255, 255, 255, 0.8);
}

.btn {
    padding: 0 20px;
}

section.login {
    height: auto !important;
    min-height: 100vh;
}

section.login .box {
    margin: 20px 20px;
}

section.login .box .btn {
    margin-top: 50px;
    min-width: 60%;
}

.profile-deletion-card {
    background: rgba(100, 100, 100, 0.8) !important;
}

.btn-warning {
    height: 88px;
    box-shadow: -10px -10px 20px #252539;
    border-radius: 44px;
    font: normal normal bold 20px/27px Open Sans;
    letter-spacing: 0;
    border: 0;
    text-transform: uppercase;
}

.box {
    margin-bottom: 40px;
}

h5 {
    margin-bottom: 20px;
}

.modal h5 {
    margin: 20px;
}

#profileDeletion .modal-body {
    padding: 30px;
}

#profileDeletion input {
    max-height: 50px;
}

.invalid-feedback {
    font-size: 18px;
}

.userButton {
    font-size: 24px;
    font-weight: bold;
    background-color: #1A192C;
    color: rgba(255, 255, 255, 0.8);
}

.profilePic {
    font-size: 55px;
    font-weight: bold;
    background-color: #1A192C;
    color: rgba(255, 255, 255, 0.8);
}

.profilePic span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    top: -5px;
    position: relative;
}

@media (max-width: 1200px) {
    .userButton {
        font-size: 18px;
    }

    .profilePic {
        font-size: 50px;
    }

    .profilePic span {
        top: -2px;
    }
}

.modal-body h3 {
    margin: 20px 0 10px 0;
}
.modal-body p {
    padding: 5px 0;
}
.modal-body {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.modal-body::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.select2-container {
    height: 88px;
    background: #1C1C31;
    box-shadow: -10px -10px 20px #252539;
    border-radius: 44px;
    border: 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: normal normal bold 20px/27px Open Sans;
    letter-spacing: 0;
    color: rgba(223, 238, 255, 0.8);
}

.select2-container--default .select2-selection--single {
    height: 88px;
    background: #1C1C31;
    border-radius: 44px;
    color: rgba(223, 238, 255, 0.8);
    border: none;
}

.select2-selection {
    height: 88px;
    background: #1C1C31;
    box-shadow: -10px -10px 20px #252539;
    border-radius: 44px;
    border: 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: normal normal bold 20px/27px Open Sans;
    letter-spacing: 0;
    color: rgba(223, 238, 255, 0.8);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 88px;
    border-radius: 44px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(223, 238, 255, 0.8);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 88px;
    width: 40px;
    right: 16px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 8px 10px 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 10px 8px 0 8px;
}

.select2-dropdown {
    background: #1C1C31;
    color: rgba(223, 238, 255, 0.8);
    border: none;
    box-shadow: -10px -10px 20px #252539;
    padding: 20px;
}

select {
    display: none !important;
}

.boat-attributes input[type=text] {
    all: unset;
    border: 1px solid rgba(223, 238, 255, 0.6);
    padding: 20px;
    padding: 5px;
    width: 90%;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.boat-attributes .checkbox input,
.boat-attributes .radio input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100% !important;
    cursor: pointer;
    padding: 0;
    opacity: 0;
    z-index: 1;
}

.boat-attributes .checkbox,
.boat-attributes .radio {
    margin-top: 12px;
}

.boat-attributes .input-group {
    flex-wrap: unset;
}

.boat-attributes input[type=text]:disabled {
    cursor: default;
    background-color: rgba(59, 59, 59, 0.3) !important;
    border-color: rgba(118, 118, 118, 0.3);
}

@media (max-width: 768px), (max-height: 800px) {
    .boat-attributes input[type=text] {
        line-height: 27px !important;
    }
}

.boat-attributes .row {
    display: flex;
    align-items: center;
}

.boat-attributes .form-group {
    margin-bottom: 0;
}

.boat-log p {
    font-weight: bold;
    padding-bottom: 0;
    padding-top: 20px;
}

.boat-log .green {
    color: #009900;
}

.boat-log .red {
    color: #990000;
}

.boat-log .log-element {
    font-size: 18px;
    margin-left: 30px;
    padding: 0;
}

.boat-attributes .attribute-delete-button,
.boat-attributes .attribute-delete-link {
    padding: 0 12px;
    border-radius: 0;
    border: 1px solid rgba(223, 238, 255, 0.6);
    border-left: none;
}

.boat-attributes .input-group-prepend .attribute-delete-button,
.boat-attributes .input-group-prepend .attribute-delete-link {
    border: 1px solid rgba(223, 238, 255, 0.6);
    border-right: none;
}

.boat-attributes .input-view {
    text-align: center;
}

.calendar .today {
    background: #F8330A;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    right: -2px;
    position: relative;
}

.calendar .events {
    min-width: 100%;
    right: -1px;
    position: relative;
}

.calendar .events .event {
    cursor: pointer;
    font-size: 10px;
    width: 100%;
    margin-bottom: 1px;
}

h4 span.dot:before {
    top: 1px;
}

.radio {
    padding-right: 18px;
}

.col-form-label,
.form-control-label {
    font-size: 20px;
    font-weight: bold;
    color: rgba(223, 238, 255, 0.8);
    margin: 0;
    padding: 10px 0;
}

.calendar .calendarHead div a {
    cursor: pointer;
    position: relative;
    top: -2px;
}

.calendar .calendarHead div i {
    position: relative;
    top: 3px;
}

.calendar .calendarHead div i:last-of-type {
    margin-left: 5px;
    margin-right: 5px;
}

.leaflet-container a:not([href]):not([class]):hover,
.leaflet-container a:not([href]):not([class]) {
    color: black;
}

.leaflet-container input {
    -webkit-appearance: auto !important;
    outline: 0 !important;
}

.leaflet-control-layers-selector {
    top: 2px;
}

.scroll-wrapper > .scroll-element, .scroll-wrapper > .scroll-element div {
    z-index: 1;
}

.helper header {
    z-index: 1240;
}

nav {
    z-index: 1250;
}

.visualizationGraph-all .vis-line-graph path {
    fill-opacity: 0 !important;
}
.visualizationGraph-all .vis-line-graph path.vis-fill {
    stroke-width: 0px !important;
}

.vis-item {
    color: rgba(223, 238, 255, 0.8) !important;
}

.vis-time-axis .vis-text {
    color: rgba(223, 238, 255, 0.8) !important;
}

.vis-custom-time {
    background-color: #ff7f6e !important;
}

.vis-timeline .vis-fill {
    fill-opacity: 0.9 !important;
    fill: #bd1d68;
}
.vis-timeline .vis-graph-group0.vis-fill {
    fill-opacity: 0 !important;
    fill: #bd1d68;
}

.vis-timeline .vis-line-graph path {
    fill: #bd1d68 !important;
    stroke: #bd1d68 !important;
    /*stroke: none !important;*/
    fill: url(#graphGradientVertical) #bd1d68 !important;
}

#graphGradientVertical {
    --color-top: #bd1d68;
    --color-bottom: #4c1e41;
}

.btn-graph-toggle span,
.btn-graph-all-toggle span {
    background-color: #bd1d68;
}

.graph-fit,
.graph-locate,
.graph-toggler {
    top: -8px;
    position: relative;
}

.graph-locate {
    margin-left: 8px;
}

.btn-graph-all-toggle,
.btn-graph-toggle {
    padding: 0 16px 0 10px;
}

.btn-graph-toggle span,
.btn-graph-all-toggle span {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 8px;
    border: 1px solid #666;
}

/* Default graph */
.graph-0 .vis-timeline .vis-fill {
    fill-opacity: 0.9 !important;
    fill: #bd1d68;
}

.graph-0 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group0 {
    fill: #bd1d68 !important;
    stroke: #bd1d68 !important;
    /*stroke: none !important;*/
    fill: url(#graphGradientVertical) #bd1d68 !important;
}

/* Blue graph */
.graph-1 .vis-timeline .vis-fill {
    fill-opacity: 0.9 !important;
    fill: #179bad;
}

.vis-timeline .vis-graph-group1.vis-fill {
    fill-opacity: 0 !important;
    fill: #179bad;
}

.graph-1 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group1 {
    fill: #179bad !important;
    stroke: #179bad !important;
    /*stroke: none !important;*/
    fill: url(#graphGradientVerticalBlue) #179bad !important;
}

#graphGradientVerticalBlue {
    --color-top: #179bad;
    --color-bottom: #0f5a64;
}

.btn-graph-toggle.btn-graph-1 span,
.btn-graph-all-toggle.btn-graph-1 span {
    background-color: #179bad;
}

/* Orange graph */
.graph-2 .vis-timeline .vis-fill {
    fill-opacity: 0.9 !important;
    fill: #f88e0a;
}
.vis-timeline .vis-graph-group2.vis-fill {
    fill-opacity: 0 !important;
    fill: #f88e0a;
}

.graph-2 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group2 {
    fill: #f88e0a !important;
    stroke: #f88e0a !important;
    /*stroke: none !important;*/
    fill: url(#graphGradientVerticalOrange) #f88e0a !important;
}

#graphGradientVerticalOrange {
    --color-top: #f88e0a;
    --color-bottom: #995809;
}

.btn-graph-toggle.btn-graph-2 span,
.btn-graph-all-toggle.btn-graph-2 span {
    background-color: #f88e0a;
}

/* Yellow graph */
.graph-3 .vis-timeline .vis-fill {
    fill-opacity: 0.9 !important;
    fill: #d6d907;
}
.vis-timeline .vis-graph-group3.vis-fill {
    fill-opacity: 0 !important;
    fill: #d6d907;
}

.graph-3 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group3 {
    fill: #d6d907 !important;
    stroke: #d6d907 !important;
    /*stroke: none !important;*/
    fill: url(#graphGradientVerticalYellow) #d6d907 !important;
}

#graphGradientVerticalYellow {
    --color-top: #d6d907;
    --color-bottom: #959705;
}

.btn-graph-toggle.btn-graph-3 span,
.btn-graph-all-toggle.btn-graph-3 span {
    background-color: #d6d907;
}

/* Purple graph */
.graph-4 .vis-timeline .vis-fill {
    fill-opacity: 0.9 !important;
    fill: #a808c5;
}
.vis-timeline .vis-graph-group4.vis-fill {
    fill-opacity: 0 !important;
    fill: #a808c5;
}

.graph-4 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group4 {
    fill: #a808c5 !important;
    stroke: #a808c5 !important;
    /*stroke: none !important;*/
    fill: url(#graphGradientVerticalPurple) #a808c5 !important;
}

#graphGradientVerticalPurple {
    --color-top: #a808c5;
    --color-bottom: #68057a;
}

.btn-graph-toggle.btn-graph-4 span,
.btn-graph-all-toggle.btn-graph-4 span {
    background-color: #a808c5;
}

/* Green graph */
.graph-5 .vis-timeline .vis-fill {
    fill-opacity: 0.9 !important;
    fill: #24d305;
}
.vis-timeline .vis-graph-group5.vis-fill {
    fill-opacity: 0 !important;
    fill: #24d305;
}

.graph-5 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group5 {
    fill: #24d305 !important;
    stroke: #24d305 !important;
    /*stroke: none !important;*/
    fill: url(#graphGradientVerticalGreen) #24d305 !important;
}

#graphGradientVerticalGreen {
    --color-top: #24d305;
    --color-bottom: #1a9504;
}

.btn-graph-toggle.btn-graph-5 span,
.btn-graph-all-toggle.btn-graph-5 span {
    background-color: #24d305;
}

/* Red graph */
.graph-99 .vis-timeline .vis-fill {
    fill-opacity: 0.9 !important;
    fill: #dd1414;
}
.vis-timeline .vis-graph-group99.vis-fill {
    fill-opacity: 0 !important;
    fill: #dd1414;
}

.graph-99 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group99 {
    fill: #dd1414 !important;
    stroke: #dd1414 !important;
    /*stroke: none !important;*/
    fill: url(#graphGradientVerticalRed) #dd1414 !important;
}

#graphGradientVerticalRed {
    --color-top: #dd1414;
    --color-bottom: #8b0d0d;
}

.btn-graph-toggle.btn-graph-99 span,
.btn-graph-all-toggle.btn-graph-99 span {
    background-color: #dd1414;
}

/* Wind graphs - @TODO make colors for them */
.graph-6 .vis-timeline .vis-fill,
.graph-7 .vis-timeline .vis-fill,
.graph-8 .vis-timeline .vis-fill,
.graph-9 .vis-timeline .vis-fill,
.graph-10 .vis-timeline .vis-fill,
.graph-11 .vis-timeline .vis-fill {
    fill-opacity: 0.9 !important;
    fill: #bd1d68;
}

.graph-6 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group6,
.graph-7 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group7,
.graph-8 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group8,
.graph-9 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group9,
.graph-10 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group10,
.graph-11 .vis-timeline .vis-line-graph path,
.vis-timeline .vis-line-graph path.vis-graph-group11 {
    fill: #bd1d68 !important;
    stroke: #bd1d68 !important;
    /*stroke: none !important;*/
    fill: url(#graphGradientVertical) #bd1d68 !important;
}

.graphAllButtons .btn {
    margin: 0 12px 8px 12px;
}

#polar-diagram {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

#polar-diagram .mover {
    overflow: hidden;
    margin-left: 15%;
    height: 100%;
    width: 100%;
}

#polar-diagram canvas {
    position: relative;
    transform: translateX(-49%);
    transform: translateX(-48.5%);
}

#polar-diagram .tickLabels {
    color: rgba(223, 238, 255, 0.8);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    top: 51%;
    left: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#polar-diagram #polarChart {
    min-height: 650px;
    min-width: 650px;
}

.modal {
    z-index: 6550;
}

.graphSelector .select2.select2-container.select2-container--default,
.graphSelector .select2.select2-container.select2-container--default .selection {
    width: 100% !important;
}

.graphSelector .select2-container {
    height: 56px;
}

.graphSelector .select2-container--default .select2-selection--single {
    height: 56px;
    border-radius: 28px;
}

.graphSelector .select2-selection {
    height: 56px;
}

.graphSelector .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 56px;
}

.graphSelector .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 56px;
}

.timezoneSelector .select2.select2-container.select2-container--default,
.timezoneSelector .select2.select2-container.select2-container--default .selection {
    width: 100% !important;
}

.timezoneSelector .select2-container {
    height: 40px;
}

.timezoneSelector .select2-container--default .select2-selection--single {
    height: 40px;
    border-radius: 20px;
}

.timezoneSelector .select2-selection {
    height: 40px;
}

.timezoneSelector .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 40px;
}

.timezoneSelector .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.boat-type-box .select2.select2-container.select2-container--default,
.boat-type-box .select2.select2-container.select2-container--default .selection {
    width: 100% !important;
}

.boat-type-box .select2-container {
    height: 40px;
}

.boat-type-box .select2-container--default .select2-selection--single {
    height: 40px;
    border-radius: 20px;
}

.boat-type-box .select2-selection {
    height: 40px;
}

.boat-type-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 40px;
}

.boat-type-box .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.select2-container--default .select2-results__option--selected {
    background-color: rgba(33, 199, 226, 0.1);
}

.select2-container--open .select2-dropdown {
    top: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.select2-container--open .select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.select2-container--open .select2-dropdown .select2-results .select2-results__options {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.scroll-wrapper > .scroll-content.scroll-scrolly_visible {
    margin-right: 8px !important;
}

.page-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(26, 25, 44);
    z-index: 1100;
}

.page-loader i {
    position: relative;
    top: 40%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.vis-background .vis-grid.vis-vertical {
    display: none;
}

.mapContainer .vis-background .vis-grid.vis-vertical,
.maneuverMapContainer .vis-background .vis-grid.vis-vertical {
    display: block;
}

.vis-background.vis-horizontal .vis-horizontal.vis-minor {
    border-color: rgba(223, 238, 255, 0.6) !important;
}

.vis-background.vis-horizontal .vis-horizontal.vis-major {
    border-color: rgba(223, 238, 255, 0.8) !important;
}

.vis-data-axis .vis-y-axis.vis-minor {
    color: rgba(223, 238, 255, 0.6) !important;
}

.vis-data-axis .vis-y-axis.vis-major {
    color: rgba(223, 238, 255, 0.8) !important;
}

.vis-panel .vis-custom-time::before {
    font: normal normal normal 16px/1 FontAwesome;
    content: "\f104";
    color: #ff7f6e;
    position: absolute;
    border-radius: 50%;
    border: 2px solid #ff7f6e;
    top: 48%;
    left: -11px;
    width: 24px;
    height: 24px;
    z-index: -1;
    padding-left: 1px;
    padding-top: 1px;
}

.vis-panel .vis-custom-time::after {
    font: normal normal normal 16px/1 FontAwesome;
    content: "\f105";
    color: #ff7f6e;
    position: absolute;
    border-radius: 50%;
    border: 2px solid #ff7f6e;
    top: 48%;
    left: -11px;
    width: 24px;
    height: 24px;
    z-index: -1;
    padding-left: 12px;
    padding-top: 1px;
}

.mapContainer .vis-panel .vis-custom-time::before,
.maneuverMapContainer .vis-panel .vis-custom-time::before {   
    top: auto;
    bottom: 31px;
    left: -12px;
    width: 26px;
    height: 26px;
    z-index: -1;
    padding-left: 2px;
    padding-top: 2px;
}
.mapContainer .vis-panel .vis-custom-time::after,
.maneuverMapContainer .vis-panel .vis-custom-time::after {
    top: auto;
    bottom: 31px;
    left: -12px;
    width: 26px;
    height: 26px;
    z-index: -1;
    padding-left: 13px;
    padding-top: 2px;
}

#graph-values .graph-value span,
.videoWrapper .graph-values .graph-value span,
#maneuver-graph-values .graph-value span,
.playbackSpeed,
.mapRotation {
    font-weight: bold;
}

.graph-dot-container {
    color: #b7c4d6;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.graph-dot-container .graph-dot span {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #fff;
    display: inline-block;
    position: relative;
    top: 4px;
}

.wind-chart-container .graph-dot-container {
    font-size: 8px;
}

.wind-chart-container .graph-dot-container .graph-dot span {
    width: 16px;
    height: 16px;
    top: 4px;
}

.graph-dot-container .graph-dot.tack-dot span {
    background-color: #145066;
    margin-right: 6px;
}

.graph-dot-container .graph-dot.gybe-dot span {
    background-color: #21c7e2;
    margin-left: 6px;
}

.graph-dot-container .graph-dot.upwind-dot span {
    background-color: #584922;
    margin-right: 6px;
}

.graph-dot-container .graph-dot.reaching-dot span {
    background-color: #fe6600;
    margin-right: 6px;
}

.graph-dot-container .graph-dot.downwind-dot span {
    background-color: #e2ae00;
    margin-left: 6px;
}

.graph-dot-container .graph-dot.starboard-dot span {
    background-color: #581444;
    margin-right: 6px;
}

.graph-dot-container .graph-dot.port-dot span {
    background-color: #e20171;
    margin-left: 6px;
}

#tackChart,
#windChart,
#starboardChart {
    max-height: 120px;
}

#performanceChart {
    max-height: 250px;
}

.weather {
    text-align: center;
}

.weather .weather-icon {
    min-height: 60px;
}

.weather > div {
    justify-content: start;
}

.weather-timezone {
    font-size: 14px;
    margin-left: 8px;
}

.sun {
    padding-bottom: 10px;
    color: rgba(223, 238, 255, 0.8);
}

.sun i {
    color: rgba(223, 238, 255, 0.8);
}

.vis-background.UPWIND {
    background-color: rgba(0, 200, 0, 0.4) !important;
}

.vis-background.REACHING {
    background-color: rgba(200, 0, 0, 0.4) !important;
}

.vis-background.DOWNWIND {
    background-color: rgba(0, 0, 200, 0.4) !important;
}

.vis-point {
    background-color: #009 !important;
    font-weight: bold !important;
    color: rgba(223, 238, 255, 0.8) !important;
}

.vis-point.tack {
    background-color: #090 !important;
}

.vis-point.gybe {
    background-color: #900 !important;
}

.vis-point .vis-item-content {
    padding: 3px 5px !important;
}

.vis-item.videoItem {
    background-color: rgba(0, 200, 0, 0.3) !important;
}

.mapContainer .vis-time-axis .vis-grid.vis-minor,
.maneuverMapContainer .vis-time-axis .vis-grid.vis-minor {
    border-color: #6c6c6c !important;
}

.login input:focus[type=text]::-moz-placeholder,
.login input:focus[type=tel]::-moz-placeholder,
.login input:focus[type=email]::-moz-placeholder,
.login input:focus[type=password]::-moz-placeholder {
    color: #495057;
}
.login input:focus[type=text]:-ms-input-placeholder,
.login input:focus[type=tel]:-ms-input-placeholder,
.login input:focus[type=email]:-ms-input-placeholder,
.login input:focus[type=password]:-ms-input-placeholder {
    color: #495057;
}
.login input:focus[type=text]::-webkit-input-placeholder,
.login input:focus[type=tel]::-webkit-input-placeholder,
.login input:focus[type=email]::-webkit-input-placeholder,
.login input:focus[type=password]::-webkit-input-placeholder {
    color: #495057;
}

.form-control:focus[type=text]::-moz-placeholder,
.form-control:focus[type=tel]::-moz-placeholder,
.form-control:focus[type=email]::-moz-placeholder,
.form-control:focus[type=password]::-moz-placeholder {
    color: #495057;
}
.form-control:focus[type=text]:-ms-input-placeholder,
.form-control:focus[type=tel]:-ms-input-placeholder,
.form-control:focus[type=email]:-ms-input-placeholder,
.form-control:focus[type=password]:-ms-input-placeholder {
    color: #495057;
}
.form-control:focus[type=text]::-webkit-input-placeholder,
.form-control:focus[type=tel]::-webkit-input-placeholder,
.form-control:focus[type=email]::-webkit-input-placeholder,
.form-control:focus[type=password]::-webkit-input-placeholder {
    color: #495057;
}

.form-check-input {
    margin-top: 0;
}

.modal-body a.active {
    color: rgba(223, 238, 255, 0.8);
}

.profileForm .vich-image .checkbox {
    margin-bottom: 0;
    margin-top: 18px;
}

.profileForm .vich-image img,
.profileForm img {
    max-height: 160px;
    margin-bottom: 20px;
}

.profilePic,
.userButton {
    background-size: cover;
    background-position: center center;
}

.relative {
    position: relative;
}

.d-none {
    display: none !important;
}

.videoLoader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(26, 25, 44, 0.5);
    z-index: 1099;
}

.videoLoader i {
    position: relative;
    top: 40%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.tempus-dominus-widget {
    background: #1C1C31;
    border-radius: 20px;
    box-shadow: -10px -10px 20px #252539;
    max-width: 200px;
}

.tempus-dominus-widget .date-container-decades div:not(.no-highlight):hover, .tempus-dominus-widget .date-container-years div:not(.no-highlight):hover, .tempus-dominus-widget .date-container-months div:not(.no-highlight):hover, .tempus-dominus-widget .date-container-days div:not(.no-highlight):hover, .tempus-dominus-widget .time-container-clock div:not(.no-highlight):hover, .tempus-dominus-widget .time-container-hour div:not(.no-highlight):hover, .tempus-dominus-widget .time-container-minute div:not(.no-highlight):hover, .tempus-dominus-widget .time-container-second div:not(.no-highlight):hover {
    background: #4a4a70;
}

.timeWrapper input {
    max-height: 40px;
}

.videoWrapper.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 210000;
    width: 100%;
    height: 100%;
    background: #333;
}

.videoWrapper .videoWrapper-controls {
    position: absolute;
    top: 0;
    right: 5px;
    font-size: 24px;
    line-height: 24px;
    /*color: rgba(255, 255, 255, 1);*/
    color: rgba(220, 53, 69, 1);
    display: flex;
}

.videoWrapper.fullscreen .videoWrapper-controls {
    background-color: rgba(100, 100, 100, 0.7);
}

.videoWrapper .videoWrapper-controls div.inactive {
    color: rgba(165, 75, 75, 1);
}

.videoWrapper .videoWrapper-controls div.inactive:hover {
    color: rgba(200, 110, 110, 0.8);
}

.videoWrapper .videoWrapper-controls div {
    cursor: pointer;
    padding: 10px;
}

.videoWrapper .videoWrapper-controls div:hover {
    /*color: rgba(255, 255, 255, 0.7);*/
    color: rgba(220, 53, 69, 0.7);
}

.videoWrapper .open-videoWrapper {
    display: table;
    margin-left: 16px;
}

.videoWrapper.fullscreen .open-videoWrapper {
    display: none;
}

.videoWrapper .close-videoWrapper,
.videoWrapper .map-videoWrapper,
.videoWrapper .data-videoWrapper,
.videoWrapper .graph-videoWrapper {
    margin-left: 16px;
    display: none;
}

.videoWrapper .close-videoWrapper {
    margin-left: 30px;
}

.videoWrapper.fullscreen .close-videoWrapper,
.videoWrapper.fullscreen .map-videoWrapper,
.videoWrapper.fullscreen .data-videoWrapper,
.videoWrapper.fullscreen .graph-videoWrapper {
    display: table;
}

.boat-form {
    align-items: normal !important;
}

.activity-box .activity-left p {
    display: block !important;
}

.activity-box {
    display: flex;
    justify-content: space-between;
}

.activity-box .activity-right {
    display: flex;
}

.activity-box .activity-right.wrap {
    padding: 10px 0;
}

.activity-box .btn.btn-primary.disabled {
    cursor: default;
    background: #0c1520 !important;
}

.activity-box .btn {
    line-height: 39px;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 5px;
}

.btn.btn-primary:not(:disabled):not(.disabled):hover,
.btn.btn-primary:not(:disabled):not(.disabled):focus,
.btn.btn-primary:not(:disabled):not(.disabled):active {
    background: #334b6a !important;
}

#alert-selector .alert-count {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 14px;
    border-radius: 26px;
    background-color: #179BAD;
    width: 24px;
    height: 24px;
    font-weight: bold;
    line-height: 24px;
    text-align: center;
}

@media (max-width: 1200px) {
    #alert-selector .alert-count {
        display: none;
    }
}

@media (max-width: 1200px) {
    .btn.btn-danger {
        height: 30px;
        border-radius: 15px;
        font: normal normal bold 12px/14px Open Sans;
    }
}


@media (max-width: 1200px) {
    .fullscreen .videoWrapper #videoGraphValues {
        display: none;
    }

    .fullscreen .videoWrapper #videoGraph {
        display: none;
    }

    .fullscreen #mapHolder {
        display: none;
    }
}

#mapHolder #mapHolderHeader {
    display: none;
}

.fullscreen .helper {
    margin-left: 0 !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.fullscreen .content {
    overflow: visible !important;
}

.fullscreen #map {
    width: 450px;
    height: 250px;
}

.fullscreen #mapHolder {
    position: fixed;
    z-index: 215000;
}

.fullscreen #mapHolder #mapHolderHeader {
    display: block;
    text-align: center;
    background-color: rgba(100, 100, 100, 0.7);
    border: none;
    cursor: pointer;
    color: #dc3545;
}

#videoGraphValues {
    display: none;
}

.fullscreen #videoGraphValues {
    display: block;
    position: absolute;
    right: 10px;
    top: 10%;
    width: 250px;
    z-index: 215000;
}

.fullscreen #videoGraphValues #videoGraphValuesHeader {
    display: block;
    text-align: center;
    border: none;
    cursor: pointer;
    background-color: rgba(100, 100, 100, 0.7);
    color: #dc3545;
}

.fullscreen #videoGraphValues .graph-values {
    padding: 10px 20px;
    font-size: 20px;
    color: #fffc14;
    background-color: rgba(100, 100, 100, 0.7);
    font-weight: bold;
}

.fullscreen #videoGraphValues .graph-values .graph-value[data-graph="time"] {
    pointer-events: none !important;
}

.fullscreen #videoGraphValues .graph-values .graph-value {
    cursor: pointer;
}

.fullscreen #videoGraphValues .graph-values .graph-value:hover {
    color: rgba(255, 255, 255, 1);
}

.fullscreen #videoGraphValues .graph-values .graph-value.active {
    text-decoration: underline;
}

#mapHolder {
    display: block !important;
}

.fullscreen #mapHolder.d-none {
    display: none !important;
}

.fullscreen .visualizationGraph-all {
    pointer-events: none !important;
    background-color: rgba(100, 100, 100, 0.7);
}

.fullscreen .visualizationGraph-all .vis-time-axis,
.fullscreen .visualizationGraph-all .vis-horizontal {
    display: none !important;
}

.fullscreen .vis-timeline {
    border: none;
}

.fullscreen .vis-panel .vis-custom-time::before,
.fullscreen .vis-panel .vis-custom-time::after {
    content: none;
}

#videoGraphGraph #videoGraphGraphHeader {
    display: none;
}

.fullscreen #videoGraphGraph {
    position: fixed;
    z-index: 215000;
    width: 450px;
    height: 120px;
}

.fullscreen #videoGraphGraph #videoGraphGraphHeader {
    display: block;
    text-align: center;
    border: none;
    cursor: pointer;
    background-color: rgba(100, 100, 100, 0.7);
    color: #dc3545;
}

.fullscreen #videoGraphGraph .videoGraphGraphHeadline {
    padding: 4px 12px;
    font-weight: bold;
    font-size: 20px;
    background-color: rgba(100, 100, 100, 0.7);
    color: #fffc14;
}

#videoGraphGraph {
    display: block !important;
}

.fullscreen #videoGraphGraph.d-none {
    display: none !important;
}

.upload-log-box .analytics-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upload-log-box input[type=text] {
    background: #3333549c;
}

.upload-log-box input[type=text]:focus {
    background-color: #fff;
}

.upload-log-box .analytics-box .fa-chevron-up {
    display: block;
}

.upload-log-box .analytics-box .fa-chevron-down {
    display: none;
}

.upload-log-box .analytics-box .collapsed .fa-chevron-up {
    display: none;
}

.upload-log-box .analytics-box .collapsed .fa-chevron-down {
    display: block;
}

.analyticsForm .afcol {
    display: flex;
    justify-content: center;
}

.analyticsForm .afcol:last-of-type {
    align-items: center;
}

.anData span {
    padding: 0;
}

.activity-box:not(:last-child) {
    border-bottom: 1px solid rgba(223, 238, 255, 0.4);
    margin-bottom: 15px;
}

.weather > div div {
    font-size: 15px;
}

footer {
    height: 35px;
}

footer img {
    top: 2px;
    position: relative;
}

