﻿.card-block {
    background:white;
    border-radius: 4px;
    border: none;
    box-shadow: 0 1px 0 0 #d7d8db, 0 0 0 1px #e3e4e8;
    padding:0px 15px;
}

.grid-title-buttons {
    display:flex;
    flex-direction:row;
    align-items:center;
}
.grid-title-buttons > a.btn-silver {
    margin-right:5px;
}



.nice-scroll::-webkit-scrollbar-track{	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);	background-color: #F5F5F5;	border-radius: 5px;}
.nice-scroll::-webkit-scrollbar{	width: 5px; height: 5px; 	background-color: #F5F5F5;}
.nice-scroll::-webkit-scrollbar-thumb{	border-radius: 5px;	background-color: #FFF;	background-image: -webkit-gradient(linear, 40% 0%, 75% 84%, from(#0bc7ff), to(#32679e),color-stop(.6,#0f8fb5));}
.popupBackDrop {
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background-color: rgb(103 133 163 / 60%);
    background: rgba(0,0,0,0.32);
    z-index: 999999;
    overflow:hidden;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: opacity .4s cubic-bezier(.25,.8,.25,1);
    transition: opacity .4s cubic-bezier(.25,.8,.25,1);
}

.popupBackDrop.animated {
     opacity: 0;
}


.popupBackDrop.animated.shown {
    opacity: 1;
    background: rgba(0,0,0,0.65);
}


.popupWindow {
    min-width:250px;
    min-height:200px;
    background:#FFF;
    color:black;
    box-shadow: 0 4px 17px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.16), 0 0 1px 0 rgba(0,0,0,.16);
    box-shadow: 0 0 0 1px rgba(0,0,0,.05), 0 2px 4px 0 rgba(0,0,0,.2);
    border-radius:20px;
    box-sizing:border-box;
    position:absolute;
    font-family: 'Roboto', helvetica, arial, sans-serif;
}

.popupWindow.modal-type {
    min-width:initial;
    min-height:initial;
    width:90%;
    height:90%;
    position:absolute;
    z-index: 999999;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.16), 0 0 1px 0 rgba(0,0,0,.16);
}


.popupWindow.animated {
    transition: all .4s cubic-bezier(.25,.8,.25,1);
}

.popupWindow.modal-type.confirm-type {
    width:initial;
    height:initial;
    min-width:400px;
}
.popupWindow > .popup-container {
    position:relative;
    width:100%;
    height:100%;
}
.popupWindow > .popup-container > div {
    padding:15px 20px;
}
.popupWindow > .popup-container > .head {
    height:40px;
    width:100%;
    background: #6593d7;
    background:#FFF;
    border-top-left-radius:20px;
    border-top-right-radius:20px;
    font-family: 'Roboto', helvetica, arial, sans-serif;
    line-height:1;
    display:flex;
    flex-direction:row;
    padding:10px 20px 10px 19px;
    font-weight:bold;

}
.popupWindow > .popup-container > .head > span {
    
    font-size:16px;
    /*color:#eaeaea;
    text-shadow: 1px 1px 1px #000000b8;*/
    display:block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width:100%;
    color:#7386A3;
}

.popupWindow > .popup-container > .head.move {
    cursor:move;
}

.popupWindow > .popup-container > .head > button.close {
    -webkit-box-align: baseline;
    align-items: baseline;
    border-width: 0px;
    box-sizing: border-box;
    display: inline-flex;
    font-size: inherit;
    font-style: normal;
    font-weight: normal;
    max-width: 100%;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    background: none;
    border-radius: 3px;
    cursor: pointer;
    /*height: 2.28571em;
    line-height: 2.28571em;*/
    transition: background 0.1s ease-out 0s, box-shadow 0.15s cubic-bezier(0.47, 0.03, 0.49, 1.38) 0s;
    vertical-align: middle;
    width: auto;
    outline: none !important;
    color: #000 !important;
    text-shadow:none!important;
    font-size:33px;
    margin-top: -11px;
    margin-right: 0px
}


.popupWindow > .popup-container > .content {
    width:100%;
    padding:10px 20px;
}



.popupWindow > .popup-container > .content.nice-scroll {
    height:calc(100% - 82px);
    overflow:auto;
    padding:15px 20px;
    position:relative;
}

.popupWindow > .popup-container > .footer {
    background: #f9fbfc;
    height:50px;
    width:100%;
    display:flex;
    flex-direction:row;
    justify-content:flex-end;
    align-items:center;
    border-bottom-left-radius:20px;
    border-bottom-right-radius:20px;
    padding:10px 20px 10px 19px;
    position:absolute;
    left:0;
    bottom:0;
}


.popupWindow > .popup-container > .footer > .button {
    font-size: 16px; 
    background-color: #3F53D9;
    border-radius: 3px; 
    color: #ffffff; 
    display: block;
    font-family: sans-serif; 
    line-height: 20px; 
    text-align: center; 
    text-decoration: none; 
    text-size-adjust: none; 
    margin-left:15px;
    padding: 5px 20px;
    transition: all 300ms ease;
    background: linear-gradient(97.25deg, #6BFFE4 -70.76%, #5197FF 133.16%);
}


.popupWindow > .popup-container > .footer > .button:hover {
    background: #0068ff;
    background: linear-gradient(92.14deg, rgba(107, 255, 228, 0.66) -17.01%, rgba(81, 151, 255, 0.66) 112.14%);
}

.popupWindow > .popup-container > .footer > .button.cancel {
    background-color:transparent;
    background:transparent!important;
    color:black;
}

.popupWindow > .popup-container > .footer > .button.cancel:hover {
    background-color: #e6e9ef;
    background:#e6e9ef;
}


.menu-toggler-dots {
    width: 22px;
    height: 4px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAATklEQVQoz2NYse245+odJx+DMIjNgARIkgNzdp76D8ZANrJikuSoZhDVvDZ54U7PSYv3PAZhEBtZMUlyYMbiPf9BGMRGVkySHNUMopbXAKLSDnCjcfmIAAAAAElFTkSuQmCC) no-repeat 50% 0;
}

 .total-center {
    display: grid;
    justify-items: center;
    align-items: center;
    place-items: center;
    width:100%;
    height:100%;

}

 .custom-slider {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.custom-slider>.slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.custom-slider>.slides>.slide {
    position: absolute;
    top: 0;
    left: 105%;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    overflow: auto;
}

.custom-slider>.slides>.slide:first-child {
    left: 0;
}

.custom-slider>.slider-menu {
    width: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0px;
    bottom: -50px;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.custom-slider>.slider-menu .icon-change {
    background: #FFFFFF;
    border: 1px solid #FF2120;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 50px;
    background: url(img/slider/arrow_left.svg) 14px 15px no-repeat white;
}

.custom-slider>.slider-menu .icon-change.next {
    background: url(img/slider/arrow_right.svg) 18px 15px no-repeat white;
}

.custom-slider>.slider-menu .icon-change:hover {
    background: url(img/slider/arrow_left_hover.svg) 14px 15px no-repeat #FF2120;
}

.custom-slider>.slider-menu .icon-change.next:hover {
    background: url(img/slider/arrow_right_hover.svg) 18px 15px no-repeat #FF2120;
}

.custom-slider>.slider-menu>ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.custom-slider>.slider-menu>ul>li {
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid #FF2120;
    cursor: pointer;
    margin: 4px;
    border-radius: 50%;
}

.custom-slider>.slider-menu>ul>li.active {
    background: #FF2120;
}




.tabcontrol {
    margin-top:10px;
}


.tabcontrol > ul {
    list-style-type:none;
    padding:0;
    background:#f6f9ff;
    border-radius: 8px;
    padding:0px 8px;
    position:relative;
    display:flex;
    flex-direction:row;
    justify-content:flex-start;
    align-items:center;
    width: fit-content;
}


.tabcontrol > ul:after {
    width:100%;
    height:4px;
    position:absolute;
    left:0px;
    top:0px;
    
    background: linear-gradient(to bottom, rgba(9, 30, 66, 0.2) 0px, rgba(9, 30, 66, 0.05) 1px, rgba(9, 30, 66, 0.02) 2px, rgba(0, 0, 0, 0) 3px);
}

.tabcontrol > ul > li {
    display:block;
    float:left;
    padding:8px 8px;
    cursor:pointer;
    color: #7386A3;
    margin-left:5px;
    text-align:center;
    min-width:110px;
    position:relative;
    /*background: #DAE8F3;
    box-shadow: 3px 0px 8px rgba(154, 165, 181, 0.4);
    border-radius: 20px 20px 0px 0px;
    color: #7386A3;
    font-weight:bold;*/
    
}




.tabcontrol > ul > li:first-child {
    margin-left:0px;
}

.tabcontrol > ul > li:hover:after {
    content:'';
    display:block;
    width:100%;
    height:3px;
    background:#c1cad4;
    
    position:absolute;
    bottom:0px;
    left:0px;
}

.tabcontrol > ul > li.active {
    color: #000;
    /*background: #EEF7FE;
    box-shadow: 3px 0px 8px rgba(181, 197, 219, 0.67);
    border-radius: 20px 20px 0px 0px;
    color: #617594;*/
}

.tabcontrol > ul > li.active:after {
    content:'';
    display:block;
    width:100%;
    height:3px;
    
    background: linear-gradient(147.53deg, #6BFFE4 5.83%, #5197FF 100.28%);
    background: linear-gradient(147.53deg, #4798DE 5.83%, #5197FF 100.28%);
    background: #4798DE;
    position:absolute;
    bottom:0px;
    left:0px;
    border-radius:3px;

}

.tabcontrol > .tabcontent {
    display:none;
    padding:5px 0px;
    position:relative;
    width:100%;
    height:100%;
    /*background: #EEF7FE;*/
}

.tabcontrol > .tabcontent.active {
    display:block;
}


.changeWarning {
    border: 1px solid #a5acb5;
    background-color: #fff9c5;
    text-align: center;
    padding: 6px 12px;
    margin: 0px 5px;
    font-size: 11px;
    line-height: 1;
}


.SilverHeader .flex-row.header-right{
    justify-content: flex-end;
    width: 100%;
}

.single-flex-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    border-radius: 8px;
    padding: 10px 20px;
    margin: 10px 5px;
    transition: background 0.11s ease-out;
    position: relative;
}

.single-flex-item.vertical-center {
    align-items:center;
}

.single-flex-item.center {
    justify-content:center;
}


.single-flex-item.space-around {
    justify-content:space-around;
}

.single-flex-item.space-between {
    justify-content:space-between;
}

.item-bordered {
    border: 1px solid #eff1f3;
    box-shadow: 0px 6px 10px rgb(154 159 173 / 5%);
}

/*Custom Combo*/
.custom-combo {
    display:block;
    width:100%;
    height: 36px;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #d6dbde;
    transition: border-color .2s;
    position:relative;
    overflow:initial;
    padding:0;
}
.custom-combo.expanded {
    border-color: #409ded;
}

.custom-combo > .combo-container {
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:flex-start;
    width:100%;
    height:100%;
}

.custom-combo > .combo-container > .name{
    width:100%;
    text-align:left;
    
    margin:0px 5px 0px 10px;
    /*font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-family: ProximaNova,'Open Sans','Helvetica Neue',sans-serif;*/
    text-shadow:none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    user-select:none;
}


.custom-combo > .combo-container > .carret {
    width:13px;
    height:13px;
    background-image: url(/SiteCMS/img/DXImages2.png);
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: -80px -159px;
    margin:0px 10px 0px 5px;
    cursor:pointer;
}

.custom-combo > .combo-container > input {
    border:none;
    outline:none;
    background:transparent;
    font-size:14px;
    margin:0;
    height:36px;
    width:95%;
    padding:0px;
    text-align:left;
}


.custom-combo > .combo-dropdown {
    position:absolute;
    width:100%;
    min-height:200px;
    max-height:300px;
    top:38px;
    left:0px;
    border-radius: 8px;
    background:white;
    box-shadow: -4px 5px 18px rgba(29,42,68,.13);
    -webkit-transition: opacity .1s;
    transition: opacity .1s;
    box-sizing: border-box;
    outline:none;
    z-index:999;
}

.custom-combo > .combo-dropdown > .combo-filter {
    -webkit-appearance: none;
    margin:0;
    padding:0;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px 8px 0 0;
    border: none;
    height: 48px;
    width: 100%;
    position:relative;
    display:flex;
    align-items:center;
    border-bottom: 1px solid #f1f1f5;
}
.custom-combo > .combo-dropdown > .combo-filter > input {
    -webkit-appearance: none;
    margin:0;
    padding:0;
    box-sizing: border-box;
    border-radius: 8px 8px 0 0;
    border: none;
    font-family: ProximaNova,'Open Sans','Helvetica Neue',sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    background:inherit;
    text-align:left;
    box-shadow:none;
    width:100%;
}
.custom-combo > .combo-dropdown > .combo-filter:before {
    content:' ';
    width:20px;
    display:inline-block;
    background:red;
}


.custom-combo > .combo-dropdown > .combo-items {
    width:100%;
    max-height:200px;
    overflow:auto;
    padding:10px 0px;
    box-sizing: border-box;
    border-radius: 0 0 8px 8px;
    background:inherit;
}


.custom-combo > .combo-dropdown > .combo-items > .item {
    width:100%;
    height:34px;
    padding:0px 20px;
    display:flex;
    align-items:center;
    background:inherit;
    color:#000;
    box-shadow:none;
    text-shadow:none;
    color: #556066;
    box-sizing: border-box;
    cursor:pointer;
    user-select:none;
    font-weight:normal;
    font-size:13px;
    text-align:left;
}
.custom-combo > .combo-dropdown > .combo-items > .item:hover {
    background:#0068ff;
    color:#fff;
}

.custom-combo > .combo-dropdown > .combo-items > .item > span {
    display:block;
    width:100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: ProximaNova,'Open Sans','Helvetica Neue',sans-serif;
    box-sizing: border-box;
}

.custom-combo.noborder {
    border: none!important;
    background:transparent;
}


.card-tabcontrol {
    display:block;
    position:relative;
}


.card-tabcontrol > .tabmenu > ul {
    list-style-type: none;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    background: #e6eff8;
    border-radius: 4px;
    border: none;
    box-shadow: 0 1px 0 0 #d7d8db, 0 0 0 1px #e3e4e8;
    padding:0px;
}


.card-tabcontrol > .tabmenu > ul > li {
    color:#5d7494;
    min-width: 30px;
    font-size:1.3rem;
    padding:8px 10px;
    cursor:pointer;
    display: block;
    float: left;
    position:relative;
    user-select:none;
}

.card-tabcontrol > .tabmenu > ul > li.active {
    background:white;
    border-radius: 4px;
    color:#000;
}
.card-tabcontrol > .tabmenu > ul > li:hover:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #c1cad4;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.card-tabcontrol > .tabmenu > ul > li.active:after {
    border-radius: 4px;
    display:none;
}


.card-tabcontrol > .tabcontent {
    display:none;
    position: relative;
    width: 100%;
    height: 100%;
    padding:0px;
}

.card-tabcontrol > .tabcontent.active {
    display:block;
}


 .signed-file-uploader {
    display:inline-block;
    width:400px;
    outline: none;
    border: solid 1px #dadada;
    background:#FFF;
    font: 11px Verdana, Geneva, sans-serif;
    position:relative;
}


.signed-file-uploader > .sg-container {
    padding:5px;
    position:relative;
}


.signed-file-uploader > .sg-container > .browse-f {
    text-align:center;
    border:dotted 1px #D2D4D6;
    border-radius:2px;
    padding:5px;
    background:#F4F4F4;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.signed-file-uploader > .sg-container > .browse-f > span {
    margin:10px 0;
}


.signed-file-uploader > .sg-container .link-file,
.signed-file-uploader > .sg-container .link-sig {
    position:relative;
    display:flex;
    align-items:center;
    width: fit-content;
}

.signed-file-uploader > .sg-container .link-file::before {
    content:'';
    display:inline-block;
    width:16px;
    height:16px;
    background:url(/img/Custom/doc_layout.png) 0 0 no-repeat;
    margin-right:5px;
}

.signed-file-uploader > .sg-container .link-sig::before {
    content:'';
    display:inline-block;
    width:16px;
    height:16px;
    background: url(/img/Security/Lock-16x16.ico) no-repeat 50%;
    margin-right:5px;
}


.signed-file-uploader > .sg-container .link-info {
    padding-left:21px;
    font-size:10px;

}

.signed-file-uploader > .sg-container .link-info > span {
    font-weight:bold;
}


.signed-file-uploader > .sg-container .data-row {
    width:100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin:2px 0;
}

.signed-file-uploader > .sg-container .link-certificates {
    margin-left:21px;
    font-size:10px;
}


.signed-file-uploader > .sg-container .btn-delete {
    position:absolute;
    bottom:5px;
    right:5px;
    display:block;
    width:16px;
    height:16px;
    cursor:pointer;
    background: url(/img/Actions/trash1616.png) no-repeat 50%;
}


.flex-row {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    flex-direction:row;
    justify-content:flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items:center;
}


.flex-row.between {
    justify-content:space-between;
}

.flex-row.around {
    justify-content:space-around;
}

.flex-row.center {
    justify-content:center;
}

.flex-row.end{
    justify-content:flex-end;
}

.flex-row.wrap {
    flex-wrap:wrap;
}

.flex-row.top {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items:unset;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items:flex-start;
}

.flex-row.baseline {
    -webkit-box-align:baseline;
    -ms-flex-align: baseline;
    align-items:baseline;
}

.flex-row.reverse {
    flex-direction:row-reverse;
}


.flex-row > .flex-col-12 {
    width: 100%
}
.flex-row > .flex-col-11 {
    width: 91.66666667%
}
.flex-row > .flex-col-10 {
    width: 83.33333333%
}
.flex-row > .flex-col-9 {
    width: 75%
}
.flex-row > .flex-col-8 {
    width: 66.66666667%
}

.flex-row > .flex-col-7 {
    width: 58.33333333%
}

.flex-row > .flex-col-6 {
    width:50%;
}

.flex-row > .flex-col-5 {
   width: 41.66666667%
}

.flex-row > .flex-col-4 {
    width: 33.33333333%
}

.flex-row > .flex-col-3 {
    width:25%;
}

.flex-row > .flex-col-2 {
    width: 16.66666667%
}
.flex-row > .flex-col-1 {
    width: 8.33333333%
}

.content-block {
    border: solid 1px #dadada;
    background-color: #f8f8f9;
    padding: 10px;
}

.inline-input-field {
    display:block;
    width:100%;
    margin-bottom:20px;
}


.inline-input-field > label:first-child {
    font: 13px Verdana, Geneva, sans-serif;
    margin-bottom:5px;
    font-weight:bold;
}


.inline-input-field > .control {
    margin-bottom:5px;
}

.inline-input-field > .error {
    font: 11px Verdana, Geneva, sans-serif;
    color:red;
}

.settings-block {
    width:100%;
    height:100%;
    border-bottom: solid 1px #dadada;
    background: #fafafc;
}


  .settings-block > .settings-menu {
    width:300px;
    height:100%;
    background-color: #e9edf1;
    border-right: solid 1px #dadada;
    font: 11px Verdana, Geneva, sans-serif;
  }
  .settings-block > .settings-menu > ul {
    list-style-type:none;
    margin:0;
    padding:0;
  }


  .settings-block > .settings-menu > ul > li {
    width:100%;
    padding:10px 15px;
    cursor:pointer;
    color: #385975;
  }

  .settings-block > .settings-menu > ul > li.active,
  .settings-block > .settings-menu > ul > li:hover  {
    color: #000;
    border-right: 3px solid #4798DE;
    width:101%;
  }
  .settings-block > .settings-menu > ul > li:hover {
    background:#f7f7f7
  }
  .settings-block > .settings-menu > ul > li.active {
    background:#fff;
  }
  .settings-block > .settings-content {
    height:100%;
    padding:10px;
    overflow:auto;
    width:100%;
    max-width:calc(100% - 310px);
    margin-left:10px;
    
  }

  .settings-block > .settings-content > .tab {
    display:none;
  }

  .settings-block > .settings-content > .tab.active {
    display:block;
  }



.ft-editor {
    width:100%;
    height:100%;
    position:relative;
}

.ft-editor > .SilverHeader {
    border-left:none;
    border-right:none;
    border-top:none;
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
}

.ft-editor > .SilverHeader > .btn-silver, .ft-editor > .SilverHeader > div > .btn-silver {
    margin-right:4px;
}
.ft-editor > .SilverHeader > .btn-silver > img {
    max-height:16px;
}
.ft-editor > .content {
    position:absolute;
    left:0px;
    top:0px;
    width:100%;
    margin-top:40px;
    height:calc(100% - 40px);
    overflow:scroll;
    padding:5px;
    padding-top:0px;
}
.ft-editor > .content .ft-table {
    margin:10px 0;
}
.ft-editor > .content .ft-table > tbody > tr > td {
    padding:2px;
}
.ft-editor > .content .fieldname {
    font-weight:bold;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.42857143;
    color: #333;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    width:130px;

}
.ft-editor > .content .fieldname.right {
    text-align:right;
}

.ft-editor > .content .ftpos-row > td{
    padding:0px;
}

.ft-editor > .content .ftpos-row > td > .ft-nomen-name {
    padding:2px 5px;
}

.popup-body > .ft-editor > .content {
    margin-top: 41px;
    height: calc(100% - 41px);
}


.row-container .row {
    margin-bottom:10px;
}


.popup-body > .ft-editor > .content .row-container .row {
    margin-left:0px;
    margin-right:0px;
}

.SilverHeader.no-buttons {
    padding-top:5px;
    padding-bottom:3px;
}
.SilverHeader .SilverHeader-Title {
    font-size: 1.4em;
    color: #2E3192;
}



.popup-confirm {

}
.popup-confirm > .msg {
    font-weight:bold;
    margin-bottom:30px;
}
.popup-confirm > .btn-silver {
    margin:auto;
    display:block;
}


.separator {
    color: #6B778C;
    font-size: 13px;
    display: flex;
    align-items: center;
    margin:10px 0;
    margin:0px;
    user-select:none;
}

.separator:after {
    content: "";
    flex-grow: 1;
    flex-shrink: 0;
    border-radius: 1px;
    height: 1px;
    margin: 0 0 0 5px;
    box-shadow: 0px 1px 0px rgb(0 0 0 / 21%);
}



.silver-filelist{
    position:relative;
    overflow:auto;
}

.silver-filelist .View {
    float: right;
}
.silver-filelist .View img {
    margin: 0 !important;
}
.silver-filelist .tile-holder {
    height: calc(100% - 45px);
    overflow: auto;
}
.silver-filelist .tile_table {
    align-items: flex-start;
}
.silver-filelist .tile {        
    position:relative;
    width: 150px;
    height:180px;
    background: #fff;
    text-align: center;
    border: 1px solid #eff1f3;
    box-shadow: 0px 6px 10px rgb(0 23 83 / 5%);
    margin-left: 10px;
    margin-top: 10px;
    text-align:center;
}
.silver-filelist .tile > img {
    width: 50px;
}
.silver-filelist .tile > .tile_name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding:0 5px ;
}
.silver-filelist .tile_button_image > img {
    width: 90%;
    height: 80%;
    margin-top: 15px;
}
.silver-filelist .tile_little {
    width: auto;
    height: auto;
    margin-top: 5px;
}

.silver-filelist .silver-grid .table-silvergrid-header-holder {
    border-top: none;
}
.silver-filelist .tile .tile_change {
    position: absolute;
    top: -4px;
    right: -2px;
    height: 16px;
    width: 16px;
}


@media (max-width: 700px) {
    .card-tabcontrol > .tabmenu > ul {
        display:flex;
        width:100%;
        flex-direction:column;
    }
    .card-tabcontrol > .tabmenu > ul > li {
        display:none;
        width:100%;
        margin:0;
        font-size: 1.4rem;
    }
    .card-tabcontrol > .tabmenu > ul > li.active,
    .card-tabcontrol > .tabmenu.mobile-opened > ul > li  {
        display:block
    }

    .card-tabcontrol > .tabmenu > ul > li:first-child {
        margin-top:0px;
    }

    .card-tabcontrol > .tabmenu > ul > li:last-child {
        margin-bottom:0px;
    }
    .card-tabcontrol {
        position:relative;
    }
    .card-tabcontrol > .tabmenu.mobile-opened {
        position:relative;
        min-height:30px;
    }
    .card-tabcontrol > .tabmenu.mobile-opened > ul{
        position:absolute;
        width:100%;
        height:auto;
        top:0px;
        left:0px;
        transition: all .2s ease-in-out;
        box-shadow: 0 0 0 1px rgb(0 0 0 / 5%), 0 2px 4px 0 rgb(0 0 0 / 20%);
        z-index:999;
    }


    .btn-silver > img + span {
        display:none;
    }

}