﻿@charset "utf-8";

@media (min-width: 1900px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1800px;
    }
}

.navbar-vertical .navbar-nav {
    font-size: 1rem!important;
}
/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #4aa3df;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .scroll-top:hover {
        background: black;
        color: #fff;
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Layout CSS
--------------------------------------------------------------*/
.errorItems input[type='text'], .errorItems input[type='password'], .errorItems input[type='number'], .errorItems textarea {
    border-color: #b00 !important;
    background: #fee !important;
}

.errorItems select {
    border-color: #b00 !important;
}

#ovly, #ovly_comp {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
    position: fixed;
    top: 0;
    z-index: 2000 !important;
    background: rgba(0,0,0,0.7);
}

#ovly-text, #ovly-text_comp {
    font-size: 20px;
    color: #eee;
    padding-top: 200px;
    vertical-align: middle;
    font-weight: bold;
}

.ovly-message {
    background-color: white;
    padding-top: 30px;
    padding-bottom: 30px !important;
    padding-left: 5px;
    padding-bottom: 5px;
    margin: auto;
    max-width: 400px;
    font-size: 150%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

#loading {
    display: table;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.8;
    z-index: 2000 !important;
}

    #loading .loadingMsg {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        padding-top: 140px;
        /*background: url('/Content/img/load_ arrow.gif') center center no-repeat;*/
    }

    #loading .loadingImg {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        padding-top: 140px;
    }

        #loading .loadingImg img {
            max-width: 100px !important;
            max-height: 100px !important;
        }

.buttonfit {
    padding-left: 9px;
    padding-right: 9px;
}

.buttonfit1 {
    padding-left: 7px;
    padding-right: 7px;
}

.alnright {
    text-align: right;
}

.alncenter {
    text-align: center;
}

.chkpad {
    margin-top: 10px;
}

.ellipsis {
    /*display: block;*/
    width: 280px;
    /* height: 130px;*/
    /*overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            -webkit-line-clamp: 2;*/ /* Show only 2 lines */
    /*-webkit-box-orient: vertical;
            cursor: pointer;*/
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /*width: 300px;*/ /* Set width */
    white-space: normal; /* Allow multi-line */
    cursor: pointer;
    text-align: justify;
}

.loading-event {
    cursor: wait;
    pointer-events: none;
}

/*--------------------------------------------------------------
# CSS distinguished phone(SP) and PC View
--------------------------------------------------------------*/
@media (min-width:700px) {
    #text-nowrap {
        white-space: nowrap;
    }

    #desk-table {
        display: block;
    }

    #phone-table {
        display: none;
    }
}

@media (max-width: 700px) {
    #desk-table {
        display: none;
    }

    #phone-table {
        display: block;
    }
}