/* view css */
/* logging div */


/*
    v_paramForm - for setting form
*/
.v_paramForm { max-width:800px; width: 100%; }
.v_paramForm.c { margin:0 auto; }

.v_paramForm.full { max-width:none;}
.v_paramForm>table { width:100%; border-spacing: 0; border-collapse: collapse; }
.v_paramForm>table tr {}
.v_paramForm>table>tbody>tr>th {
    width: 25%;
    border: 1px solid #ccc;
    background-color: #F3F3F3;
    line-height: 40px;
/*    white-space: nowrap;*/
    text-align: center;
}
.v_paramForm>table>tbody>tr>td {
    border: 1px solid #ccc;
    vertical-align: top;
    padding: 10px;
    background-color: #fafafa;
}
.v_paramForm>table .v_paramFormCaption {
    background-color: #267fbf;
    color: #fff;
    padding: 5px 10px;
    text-align: left;
    height: 30px;
    font-size:150%;
}
.v_paramForm>table .v_paramFormBreak {}
.v_paramForm>table .v_paramFormLine {
    min-height: 40px;
    line-height: 40px;
    text-align: left;
}
.v_paramForm input[type=text],.v_paramForm input[type=url],.v_paramForm input[type=email],.v_paramForm input[type=number],.v_paramForm input[type=password],.v_paramForm select {
    width:100%;
    height:25px; line-height:25px;
    font-size:14px;
    border:1px solid #ccc;
}
.v_paramForm input[type=number] {
    width:150px;
    text-align: center;
}
.v_paramForm select[multiple] {
    height:100px;
}
.v_paramForm .buttondiv { text-align: right;}
.v_paramForm .buttondiv.buttonDivModalFixed {
    position:fixed;
    top:27px;
    right:100px;
}
.v_paramForm .buttondiv.buttonDivModalFixed >button,.v_paramForm .buttondiv.buttonDivModalFixed >a {
    font-size:150%;
    padding:10px;
}
.v_paramForm .buttondiv.buttonDivModalFixed >button>svg,.v_paramForm .buttondiv.buttonDivModalFixed >a>svg {
    font-size:110%;
}
.v_paramForm .buttondiv.buttonDivModalFixed >button>i.fas,.v_paramForm .buttondiv.buttonDivModalFixed >a>i.fas {
    font-size:110%;
}


/*
    v_wallpaper - for background image / gradient ( z-index: -1) add to body first child
*/
.v_wallpaper {
    position:fixed;
    z-index: -1;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
}



/*
    v_sidebar - for left / right pos , for 5 style
    .style_fixed {}
*/
/* debug */
.v_sidebar {
/*    background-color: #f00;  */
/*    padding-top: 60px; */
}

.v_sidebar {
    position: fixed; /* Stay in place */
    width:0;
    top:0;
    z-index: 50; /* Stay on top */
    overflow-x: hidden; /* Disable horizontal scroll */
    background-color: #fff;
    height:100vh;
    transition: 0.3s;
/*  0.5  second transition effect to slide in the sidenav */
}
.v_sidebar+div {
    transition: 0.3s;
}
.v_sidebar.pos_left { left:0; }
.v_sidebar.pos_right { right:0; }
/* style_fixed */
.v_sidebar.style_fixed { transition: none;}
.v_sidebar.style_fixed>.v_sidebar_closebtn { display: none; }
.v_sidebar.style_fixed { height:100vh; }
/* style_slide_push */
.v_sidebar.style_slide_push.active {
    width:234px;
}
.v_sidebar.style_slide_overlay { }


.v_sidebar_closebtn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 36px;
/*  margin-left: 50px;*/
}
.v_sidebar_closebtn>i.fas { font-size:36px;  color:#fff;}
.v_sidebar_openbtn {
    position: absolute;
    top: 9px;
    left:10px;
    font-size: 36px;
/*  margin-left: 50px;*/
}
.v_sidebar_openbtn>i.fas { font-size:36px; color:#fff;}


/*
    v_menulist - for menu listing
*/

.v_menulist { margin-top:30px; }
.v_menulist >.menubtn>a {
    display: block;
    line-height: 45px;
    font-size:20px;
    padding-left:20px;
    text-decoration: none;
    color:#000;
    font-weight: 300;
}
.v_menulist >.menubtn>a:hover { background-color: aliceblue;}

/* view css style */
.boxshadow_bottom { -webkit-box-shadow: 0 10px 6px -6px #777; box-shadow: 0 10px 6px -6px #777; }
.boxshadow_bottom_3d { position: relative; }
.boxshadow_bottom_3d::before, .boxshadow_bottom_3d::after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width:300px;
    background: #777;
    -webkit-box-shadow: 0 15px 10px #777;
    box-shadow: 0 15px 10px #777;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);    
}
.boxshadow_bottom_3d:after {
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}
.boxshadow_right { -webkit-box-shadow: 7px 0px 5px -6px #777; box-shadow: 7px 0 5px -6px #777; }
.boxshadow_left { -webkit-box-shadow: -7px 0px 5px -6px #777; box-shadow: -7px 0 5px -6px #777; }
.pad5 { padding:5px;}
.pad10 { padding:10px;}
.pad20 { padding:20px;}
.hcenter { margin-left:auto; margin-right:auto;}
@media (min-width:768px) {
    .vcenter { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
}
@media (max-width:767px) {
    .vcenter { margin-top:20px;}
}
.cursor { cursor:pointer;}
.alignleft { text-align: left;}
.alignright { text-align: right;}
.aligncenter { text-align: center;}
.floatright { float:right; }
.floatleft { float:left; }
.opacity3 { opacity: 0.3;}

.liststyle_none { list-style: none;}
.liststyle_square { list-style: square;}
.liststyle_circle { list-style: circle;}
.liststyle_disc { list-style: disc;}
.listinline { display:inline; }
.listblock { display: block;}
ul.listinline>li { display: inline; }


.logininfo { border-bottom:1px solid #ccc; line-height: 55px;}
.logininfo>.userlogo { margin-left:10px; line-height: 55px; padding-top: 10px;}
.logininfo>.userlogo>i.fas {font-size:35px; }


.summaryBoxList {
    padding:0;
    width:100%;
    list-style: none;
    text-align: center;
    margin:20px auto;
    height:52px;
    overflow: hidden;
}
.summaryBoxList>li {
    display: inline-block;
    border:1px solid #ccc;
}

.summaryBox {
    display: block;
    width:90px;
    height:50px;
}
.summaryBox>div {
    text-align: center;
    line-height: 25px;
    font-size:12px;
    
}

.functionList{ margin:10px 20px; padding:0;}
.functionList>li {
    line-height: 40px;
}
.functionList>li>a {
    display: block;
    text-decoration: none;
    color:#000;
    border-bottom:1px solid #ccc;
    padding:0 10px;
}

.v_app_listContentView {
    padding:10px;
    border-bottom: 1px solid #999;
}
.v_app_listContentView .title { font-size:20px; color:#000;}
.v_app_listContentView .content { padding-left:10px;  color:#000; line-height: 1.3;}


.v_app_btnList { padding:0; margin:0 10px;}
.v_app_btnList>li { display: inline-block;}

.v_app_backBtnDiv { padding:10px; font-size:20px; color:#000;}
.v_app_backBtnDiv>a {
    color:#000;
}
.v_app_backBtnDiv>a>i.fas {
    font-size:20px;
}

.v_barcodeScanBar {
    border:1px solid #ccc;
    line-height:40px;
    background-color:#fff;
    padding-top:10px;

}

/*
.v_barcodeScanBar label {
    display: block;
}
*/

.v_barcodeScanBar input {
    border: none;
    outline: 0;
    font-size:20px;
    color:rgba(51,120,255,1);
}
.v_barcodeScanBar input::placeholder {
    color:rgba(150,150,150,1);
    
}
.v_barcodeScanBar input:focus::placeholder {
    color:rgba(51,120,255,1);
    
}

.v_barcodeScanBar button {
/*    width:70px;*/
    border:none;
/*    margin:0 10px;*/
    margin:0 10px;
    background-color: transparent;
    
}
.v_barcodeScanBar button>i.fas {
    font-size:20px;
}
/*
.v_barcodeScanBar input,.v_barcodeScanBar button {
    display:inline-block; width:auto;
}
*/

.v_dropdownmenu { position: relative; display: inline-block;}
.v_dropdownmenu>button { padding:5px 8px; background-color: #4CAF50; color:#fff; cursor: pointer;}
.v_dropdownmenu>.menu-content {
    display: none;
    position: absolute;
    background-color: #fefefe;
/*    min-width: 160px;*/
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    white-space: nowrap;
}
.v_dropdownmenu>.menu-content>a {
    display:block;
    padding:8px 12px;
    color:#000;
    text-align: center;
    border:1px solid #dddddd;
    border-width: 0 0 1px 0;
}
.v_dropdownmenu>.menu-content>a:hover { background-color:#3388cc; color:#fff;  }
.v_dropdownmenu:hover .menu-content { display: block; }


.roundbox {
    border:1px solid #ccc;
    border-radius: 20px;
    margin-top:5px; margin-bottom:5px;
    padding:20px;
}
.v_bs_block {
    background-color: #fafafa;
    border: 1px solid #ccc;
    border-width: 0 0 1px 0;
    padding-bottom: 10px;
    box-shadow: 3px 3px 10px rgba(100,100,100,1);
    border-radius: 3px;
}
.v_bs_block>.caption {
    background-color: #267fbf;
    color: #fff;
    padding: 5px 10px;
    text-align: left;
    height: 30px;
    font-size: 150%;
}
.v_bs_block>.content {
    padding:10px;    
}

.v_bs_searchbar {
	border:1px solid #ccc;
	padding:5px;
	background:#fff;
	line-height:30px;
}
.v_bs_searchbar>*,.v_bs_searchbar>*>i {
	line-height:30px;
}
.v_bs_searchbar>input {
	line-height: 30px;
	height:30px;
	border:0;
}

.v_monthCalendar {
    table-layout: fixed ;
    border:1px solid #ccc;
    margin-bottom:20px;
    background-color: #fff;
}
.v_monthCalendar th {
    background-color: azure;
    text-align: center;
    border:1px solid #ccc;
    border-width: 0 1px 1px 0;
    font-weight: bold;
}
.v_monthCalendar td {
    padding:5px;
    border:1px solid #ccc;
    border-width: 0 1px 1px 0;
    height:80px;
    vertical-align: top;
}
.v_monthCalendar .d {
    font-weight: bold;
}
.v_monthCalendar .x {
    background-color: #efefef;
    opacity: 0.5;
}

.v_monthCalendar .hol {
    background-color:#ffe3e3;
    opacity: 0.5;
}

/*
.txt-success { color:green; }
.txt-danger { color:red; }
.txt-warning { color:#E5AD06; }
*/

.box-square { display:inline-block; width:20px; height:20px; border:1px solid #666; }
/*
.bg-success { color:green; }
.bg-danger { color:red; }
.bg-warning { color:#E5AD06; }
*/
.bg-holiday { background-color:#ffe3e3; }

.bgvideo {
/*
    position: fixed;
    top:0; right:0; bottom:0; left:0;
    z-index:-99;
*/
}


.bgvideo {
    object-fit: cover;
    width: 100vw;
    height:100vh;
    position: fixed;
    top:0;
    left:0;
    z-index: -99;
}

.v_bgvideo {
/*    opacity: 0.7;*/
    object-fit: cover;
    width:100%;
    position: absolute;
    top:0;
    left:0;
    right:0;
    z-index: -99;
    margin:0 auto;
    max-height: 100vh;
}

.v_inline_tag {
    position: relative;
    display: inline-block; padding:3px 5px;
    margin:3px;
    border:1px solid #ccc;
    border-radius: 5px;
    background-color: #efefef;
    line-height:25px;
    
}

.v_inline_tag .x {
    display: inline-block;
    margin-left:7px;
    color:#999;;
    line-height: 14px;
    width: 14px;
    border-radius: 15px;
    background-color: #ccc;
    text-align: center;
}
.v_inline_tag .x:hover {
    background-color: #999;
}
.v_inline_tag .x>.fas {
    font-size:10px;
    color:#efefef;
    margin: 0;
}

.textSelectActionField>div {
}
.textSelectActionField>div>* {
    
}
.textSelectActionField input[readonly] {
display: inline-block;
    line-height: 30px;
    height: 30px;
    background-color: #e9ecef;
    width:auto;
/*    width: calc(100% - 45px);*/
    border-radius: 5px 0 0 5px;
    border-right-width: 0;
    cursor: pointer;
}
.textSelectActionField .input-group-append {
/*    display: inline-block;*/
    height: 30px;
    line-height: 30px;
/*    width: 40px;*/
    background-color: #e9ecef;
    border: 1px solid #ccc;
    border-radius: 0 5px 5px 0;
    text-align: center;
    cursor: pointer;
}
.textSelectActionField .input-group-text {
    border:none;
    width:40px;
}


.v_layermodal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 9999;
    padding: 70px 50px;
    background-color: #efefef;
    overflow-y: auto;
}

.v_layermodal .closebtn {
    position: absolute;
    top:40px;
    right:40px;
/*    float:right;*/
    width:60px;
    height:60px;
    border-radius: 30px;
    text-align: center;
    background-color:#ddd;
}

.v_layermodal .closebtn>i.fas {
    line-height: 60px;
    font-size:40px;
    color:#666;
}
.v_layermodal .closebtn:hover {
    background-color:#ccc;
}


.v_bs_tab {
    margin-top:30px;
    background-color: #fafafa;
    border: 1px solid #ccc;
    border-width: 0 0 1px 0;
    padding-bottom: 10px;
    box-shadow: 3px 3px 10px rgba(100,100,100,1);
    border-radius: 3px;
}
.v_bs_tab>ul {
    background: -webkit-linear-gradient(top left, #4f9bb5 0%, #1F3E48 100%);
    background: -o-linear-gradient(top left, #4f9bb5 0%, #1F3E48 100%);
    background: linear-gradient(to bottom right, #4f9bb5 0%, #1F3E48 100%);
    padding: 10px 0 0 20px;
    color: #fff;
}
.v_bs_tab>ul>li>a {
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px 5px 0 0;
    padding-bottom: 10px;
}
.v_bs_tab>ul>li>a:hover {
    border-color: transparent!important;
}
.v_bs_tab>ul>li>a>span.badge {
    background-color:#fff;
    margin-left:5px;
    padding:5px 8px;
    color:#000;
}
.v_bs_tab>ul>li>a.active>span.badge {
    background-color: #ccc;
    font-weight: bold;
    
}

.v_bs_tab>ul>li>a.active {
    background: #fff!important;
    color: rgb(255, 102, 0)!important;
}
.v_bs_tab>.tab-content table td:first-child,.v_bs_tab>.tab-content table td:nth-child(2) {
    width: 1px;
    white-space: nowrap;
}
.v_dropfilezone {
}
.v_dropfilezone>.uploadzone {
    width:80%;
    height:200px;
    border:3px dashed #ccc;
    border-radius: 5px;
    margin: 20px auto;
    text-align: center;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
}

.v_dropfilezone>.uploadzone:hover {
    cursor: pointer;
}

.v_dropfilezone>.uploadzone h1{
    text-align: center;
    font-weight: normal;
    font-family: sans-serif;
    line-height: 50px;
    color: darkslategray;
}

.v_dropfilezone>input[type='file'] {
    display: none;
}

.v_bsform.c { margin-left: auto; margin-right: auto; }
.v_bsform.l { margin-left: 0; margin-right:inherit; }
.v_bsform input[type=text],.v_bsform input[type=number],.v_bsform input[type=email],.v_bsform input[type=link] { width:100%; border:1px solid #ccc; line-height:30px; height:30px; font-size:95%; min-width: 100px; padding:3px 5px; }
.v_bsform .input-group>input[type=text] { width: 1%; min-width: inherit;}
.v_bsform input[type=text][readonly] { background-color: #efefef; }
.v_bsform select { width:100%; border:1px solid #ccc; line-height:30px; height:30px; text-align: center;padding:3px; min-width:100px; font-size:95%;}
.v_bsform textarea { border:1px solid #ccc; width:100%; padding:5px; }
.v_bsform label { display:block; height:30px; font-size:120%; white-space: nowrap; overflow: hidden; line-height: 30px; margin-bottom: 0; font-weight: bold;}
.v_bsform  p { line-height: 30px; margin:0;}
.v_bsform .row { padding:3px 0;}
.v_bsform .row .pageBlock { margin:5px;}
.v_bsform .row { line-height: 30px; }
/*.bsinfo .row:nth-child(odd) { background-color: #f5f5f5; }*/
.v_bsform .row { padding:0;}
.v_bsform .row>div:nth-child(odd) { background-color: #f5f5f5; }
.v_bsform .row>div { border:1px solid #ccc; border-width: 1px 0 0 1px; padding:3px; overflow-x:hidden;}
.v_bsform .row>div:last-child { border-right-width: 1px;}
.v_bsform .row:last-child>div { border-bottom-width: 1px;}
.v_bsform .row .limitwidth {
    max-width:400px;
}

.v_select2+.select2-container textarea {
    min-height: 30px;
}

.select2-selection--multiple,.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 0!important;
}

