﻿/*@import url('css/open-iconic/font/css/open-iconic-bootstrap.min.css');*/
/*@import url('Styles/style.css');*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,800;0,900;1,100;1,200;1,300;1,400;1,700;1,800;1,900&family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.VerticalScrollBar {
    scroll-snap-align: start;
    overflow-y: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

    .VerticalScrollBar::-webkit-scrollbar {
        width: 12px;
        height: 12px;
        float: left;
    }

    .VerticalScrollBar::-webkit-scrollbar-thumb {
        background: #012B3C;
        border-radius: 0px;
    }

    .VerticalScrollBar::-webkit-scrollbar-track {
        background: rgba(255,255,255, 0.2);
    }

.VerticalScrollBar2 {
    scroll-snap-align: start;
    overflow-y: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

    .VerticalScrollBar2::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    .VerticalScrollBar2::-webkit-scrollbar-thumb {
        background: black;
        border-radius: 10px;
    }

    .VerticalScrollBar2::-webkit-scrollbar-track {
        background: transparent;
    }

.centerCol {
    width: 1370px !important;
    min-width: 1370px !important;
    max-width: 1370px !important;
    align-items: center;
}

.flexCol {
    display: flex;
    flex-direction: column;
}

.flexRow {
    display: flex;
    flex-direction: row;
}

.mainCol {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    align-items: center;
}
.inputPlaceholderColor::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: var(--PlaceHolderColor);
    font-weight: 300;
}

.inputPlaceholderColor:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: var(--PlaceHolderColor);
    font-weight: 300;
}

.inputPlaceholderColor::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: var(--PlaceHolderColor);
    font-weight: 300;
}

.inputPlaceholderColor:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--PlaceHolderColor);
    font-weight: 300;
}

.inputPlaceholderColor::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--PlaceHolderColor);
    font-weight: 300;
}

.inputPlaceholderColor::placeholder { /* Most modern browsers support this now. */
    color: var(--PlaceHolderColor);
    font-weight: 300;
}