.logo{
	width:200px;
}

.welcome-panel .welcome-panel-column {
    /*width: 33% !important;*/
    border-right: 1px solid #dcdcde;
    padding: 0 1rem;
    min-width: 250px !important;
}


/*#dashboard-widgets-wrap{
	display: none;
}*/

.welcome-panel .welcome-panel-column-container {
    display: flex;
    overflow-x: auto;
}


@media screen and (max-width: 782px){
	.welcome-panel .welcome-panel-column-container {
    display: block;
}
}


/********** Modal Pupup CSS  **********/

.popupinput {
  display: none !important;
}

label.close{
    background: black;
    color: white;
    padding: 0.3rem 1rem;
    position: absolute;
    right: 0;
    top: 0;
}

.modalwrap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  z-index: 999;
}

input.popupinput[type=checkbox]:checked+.modalwrap {
  display: block

}

.modalwrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.8)
}

.modalwrap .modalwrap-content {
width: 75vmin;
position: absolute;
background-color: #fff;
z-index: 2;
overflow: auto;
max-height: 80%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 1rem;
}



/*according with pure css*/



.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab {
  width: 100%;
  overflow: hidden;
}
.tab-label {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  line-height: 24px;
  margin-bottom: 7px;
  font-size:14px;
  color: #2271b1;

}

.tab-label::after {
  content: "\276F";
  margin-right: 0.3rem;
  transition: all 0.35s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  transition: all 0.35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  cursor: pointer;
}


input:checked + .tab-label::after {
  transform: rotate(90deg);
}
input:checked ~ .tab-content {
  padding: 1em;
      max-height: 100vh;
}