/*
5-column layout with Bootstrap 4
https://www.cattlegrid.info/2018/06/21/5-column-layout-with-bootstrap-4.html
*/
.col-2dot4,
.col-sm-2dot4,
.col-md-2dot4,
.col-lg-2dot4,
.col-xl-2dot4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
@media (min-width: 540px) {
    .col-sm-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 720px) {
    .col-md-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 960px) {
    .col-lg-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 1200px) {
    .col-xl-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.nounderline {
    text-decoration: none !important
}

.contact-highlighted-cat{
    bottom: 0;
    right: 0;
    line-height: 1;
}
    .contact-highlighted-cat .badge{
        border-radius: 0;
        bottom: 0;
        right: 0;
    }

.owc-name{
    font-size: 16px;
}

.contact-general-info{
    border-left: 1px solid #dee2e6;
}

@media (max-width: 992px) {
    .contact-general-info{
        border-left: none;
    }
}

/*Select Tag Restyle*/
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: flex;
    align-items: center;
    outline: none;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
}
.nice-select:hover{
    background-color: #f5f5f5;
    color: #202020;
    cursor: pointer;
}
.nice-select:focus{
    background-color: #f5f5f5;
    color: #202020;
}
.nice-select:after{
    content: "\f078";
    font-family: FontAwesome;
    color: #777;
    position: absolute;
    z-index: 5;
    right: 20px;
    transition: .2s;
}
.nice-select.open .list{
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}
.nice-select .list{
    background-color: #fff;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,0.1);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}
.nice-select .option{
    color: #202020;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    list-style: none;
    outline: none;
    padding: 15px 20px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(32, 32, 32, 0.1);
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option.selected{
    background-color: #f6f6f6;
}

.no-csspointerevents .nice-select .list {
    display: none;
}
.no-csspointerevents .nice-select.open .list {
    display: block;
}