:root{
--ffamily: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen-Sans, Ubuntu, Cantarell,
               "Helvetica Neue", sans-serif;
			   
}

body{
margin:0;
font-family: var(--ffamily);
}

.app input, select, textarea{
font-family: var(--ffamily);
}

.app input[type=radio]{
    height: 23px;
    width: 23px;	
	cursor:pointer;
}

*{
    box-sizing: border-box;
}

/**Default Styles**/
h1,h2,h3,h4,p{
margin:0;
width:fit-content;
}

label{
font-size:15px;
}


.scroll-snap-center{
scroll-snap-align:center;
}

.scroll-snap{
display:flex;	
overflow-x:auto;
scroll-snap-type: x mandatory;
scrollbar-width: none;	
-ms-overflow-style: none;
}


.is-pinched{
touch-action:auto!important;
}

.app .inactive *{
opacity:.3;
}

.gallery{
display:flex;
scroll-snap-type: x mandatory;
overflow:auto;	
}

.gallery img{
scroll-snap-align:center;
max-width:100%;
}


.blackview{
background:#000;
}

.blackview header{
background:rgba(0,0,0,0.5);
}

.blackview header .menus .togglemenu i{
color:#ffffff;
}

.blackview .main{
z-index:1;
}

.blackview header{
z-index:2;
}

.blackview .userhead{
display:none;
}

.blackview img{
max-width:100%;
max-height:100%;
}

.blackview.fullscreen header{
display:none;	
}

.blackview a{
color:#fff!important;
}

/** Positions **/

.relative{
position:relative;
}

.fixed{
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
}

.absolute{
position:absolute;
}



.sticky{
position:sticky;
}

.scroll{
overflow:auto;
overscroll-behavior: contain;
}

.thin-scroll{
scrollbar-width: thin;
}


.auto{
margin:auto;
}

.auto-left{
margin-left:auto;
}

.auto-right{
margin-right:auto;
}

.auto-top{
margin-top:auto;
}

.auto-bottom{
margin-bottom:auto;
}

.nopad{
padding:0!important;
}


/**Width & Height**/
.w100{
width:100%;
}

.fit-content{
width:fit-content;
}

.w90{
width:90%;
}

.h100{
height:100%;
}

.space{
height:10px;
}

.m-right-20{
margin-right:20px;
}

/** Flex box **/

.flex{
display:flex;
flex-wrap:wrap; 
align-items: flex-start;
}

.flex-none{
flex:none;
}

.nowrap{
flex-wrap:nowrap;
}

.gap-1{
gap:1px;	
}
.gap-2{
gap:2px;	
}

.gap-3{
gap:2px;	
}

.gap-4{
gap:2px;	
}

.gap-5{
gap:5px;
}

.gap, .gap-10{
gap:10px;
}

.gap-15{
gap:15px;
}

.gap-20{
gap:20px;
}

.gap-25{
gap:25px;
}

.gap-30{
gap:30px;
}
.gap-40{
gap:40px;
}

.auto-left{
margin-left:auto;
}

.space-between{
justify-content:space-between;
}

.space-even{
justify-content:space-evenly;
}

.column{
flex-direction:column;
}

.center{
justify-content:center;
}


.column-top{
align-items:start;
}

.column-center{
align-items:center;
}

.column{
align-items:unset;
justify-content:unset;	
}

.column.space-between{
justify-content: space-between;	
}

.column.center{
align-items:center;
}

.column.column-center{
justify-content:center;
}

.column.column-bottom{
justify-content:flex-end;
}

.column.left{
align-items:flex-start;
}

.left{
	justify-content:flex-start;
}
.right{
	justify-content:flex-end;
}

.top{
align-items:flex-start;
}

.bottom{
	align-items:flex-end;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-1 {
    flex: 1;
}


.wrap{
flex-wrap:wrap;
}


.one-line, .one-line *{
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical; 
}


/** Text & Appearances **/

.weight-500{
font-weight:500;
}

.medium-text{
font-size:15px;
}

.large-text{
font-size:18px;
}

.small-text, .app a.small-text, .app button.small-text, .app input.small-text, .app textarea.small-text{
    font-size: 14px!important;
}

.smaller-text{
    font-size: 13px;
}

.text-center{
text-align:center;
}

.semi-bold{
font-weight:600;
}

.no-opacity{
opacity:1;	
}

.light-text{
opacity:.8;
}

.lighter-text{
opacity:.6;
}

.shadow{
	box-shadow:
      1px 2px 2px hsl(220deg 60% 50% / 0.2),
      2px 4px 4px hsl(220deg 60% 50% / 0.2),
      4px 8px 8px hsl(220deg 60% 50% / 0.2),
      8px 16px 16px hsl(220deg 60% 50% / 0.2),
      16px 32px 32px hsl(220deg 60% 50% / 0.2);
	-webkit-box-shadow:
      1px 2px 2px hsl(220deg 60% 50% / 0.2),
      2px 4px 4px hsl(220deg 60% 50% / 0.2),
      4px 8px 8px hsl(220deg 60% 50% / 0.2),
      8px 16px 16px hsl(220deg 60% 50% / 0.2),
      16px 32px 32px hsl(220deg 60% 50% / 0.2);
}



/**Buttons & Links ***/

.app .rect{
width:100%;
min-height:60px;
}


.app a, .app .linkk{
color:var(--linkcolor);
text-decoration:none;
cursor:pointer;
}

.color-inherit, a.color-inherit{
color:inherit;
}

button, a.button{
border:0;
background:transparent;
}

.app button, .app .button{
display:flex;
justify-content:center;
align-items:center;
gap:10px;
border-radius:10px ;
cursor:pointer;
transition:background .3s;
}

.app .btn-small{
height:20px;
width:20px;
font-size:18px;
color:inherit;
}

.app .btn-medium{
height:40px;
width:40px;
font-size:30px;
color:inherit;
}

.app .btn-large{
height:40px;
width:40px;
font-size:35px;
color:inherit;
}

.app button{
border:none;
box-shadow: 0;
font-family: Poppins, Arial, sans-serif; 
cursor:pointer;
padding:12px 10px;
}

.app .btn-fill{
transition:unset;
}

.app .btn-fill.small:not(.btn-oval){
padding:5px 15px;	
}

.app .btn-oval{
border-radius:50%;
padding:8px;
}

.app .btn-outline{
border:1px solid;
}


.app .btn-primary{
color:var(--linkcolor);
}

.app .btn-secondary{
color:inherit;
}

.app .btn-outline.btn-primary{
border:1px solid var(--darkgrey);
color:var(--linkcolor);
}

.app .btn-fill.btn-primary{
background:var(--buttoncolor);
color:var(--buttontextcolor);
font-weight:600;
}

.app .btn-fill.btn-secondary{
background:var(--darkgrey);
color: var(--lighttextcolor);;
}

.app .btn-fill.btn-primary.danger{
background:#ff0000;
}

.app .btn-secondary:hover{
background:var(--darkgrey);
}

.app .btn-secondary.btn-white:hover{
background:rgba(255, 255, 255,0.15);
}

.app .blackview .btn-secondary:hover{
background: rgba(255, 255, 255,0.15);
}

select{
width:100%;
padding:10px;
height:50px;
background: var(--selectbackgroudcolor);
border-radius:10px;
border:0;
font-family: Poppins, Arial, sans-serif; 
font-weight:500;
color: var(--selecttextcolor);
}

select:focus{
outline:1px solid var(--selectbackgroundcolortext);
}


.app *:not(.allow-select), .snackbar, .onboarding_screen{
-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */	
								  outline:0;
	
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	
}


/** Forms & Inputs **/

.app form{
width:100%;
}

.app form input, form input[type=file], textarea{
    width: 100%;
    padding: 14px 15px;
    border-radius: 8px;
    margin-top:5px;
    font-size: 16px;
	color:var(--textcolor);
    border:1px solid var(--inputbordercolor);
	background:var(--inputbackgroundcolor);
}

.app form input[disabled]{
background:var(--grey);
}

.app form .password-field{
	padding-right:40px;
}

.app .file-container{
    border:1px solid var(--inputbordercolor);	
	font-weight:400;
}

.app .file-container{
    border:1px solid var(--inputbordercolor);	
	font-weight:400;
}


.app form input:focus{
outline: 1px solid var(--buttoncolor);
border:1px solid transparent;
}

.app form #filegroup label{
    margin-top:5px;	
}

.app form input[type=file]{
padding: 1px;	
font-size: 15px;
width:180px;
}

.password-input{
    position:relative;
}

.password-visible-icon{
    position:absolute;
    top: calc(50% - 17.5px);
    right:10px;
    cursor: pointer;
	font-size:25px;
}





/** Lists **/


/** Cards **/


.card_list{	
row-gap:20px;
align-items: stretch;
}

.card_list .label{
margin-left:auto;
opacity:.8;
margin-right:2.5px;
}

.card_list .cards{
position:relative;
}

.card_list .cards .badge{

    position: absolute;
    right: 5%;
    top: 8%;
    background: red;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}



.menu .sheet-content{
font-size: 16px;
transition:all .5s;
z-index:3;
background:var(--backgroundcolor);	
position:absolute;
box-shadow:  1px 3px  var(--shadowcolor), 0 1px 2px  var(--shadowcolor);
-webkit-box-shadow: 0 1px 3px  var(--shadowcolor), 0 1px 2px  var(--shadowcolor);
min-width:200px;
top:100%;
border-radius:15px;
}


.menu.right .sheet-content{
right:0;	
}

.menu.left .sheet-content{
left:0;	
}


.menu .item{
width:100%;
}

.menu.active .overlay{
content: "";
position:fixed;
top:0;
z-index:1;
left:0;
right:0;
bottom:0;
background:transparent;
overflow:hidden;
overscroll-behavior: contain;
}


.menu.active.sheet .overlay, .menu.active.dual .overlay{
background: var(--overlaycolor);
}

.no-scroll{
position:fixed;
overflow-y:scroll;
inset:0;
}

.menu .actions-menu{
padding: 10px 0;
}

.menu .actions-menu .item{
	width:100%;
	display:flex;
	align-items:center;
	gap:15px;
    transition: all 0.3s ease;
padding:13px 15px;
}



.menu .actions-body{
	padding:10px 20px;
}

.menu .action-header{
display:none;
align-items:center;
padding: 20px 15px 15px 18px;
border-bottom:1px solid var(--darkergrey);
}


.menu .actions-menu i{
font-size: 22px;
}

.menu .action-header i{
font-size:17px;
}

.menu .item:hover{
	background:var(--grey);
}





.menu.sheet .sheet-content{
	right:0;
	top:unset;
    min-width:unset;
	left:0;
	bottom:-100%;
   border-radius:25px 25px 0 0;
   position:fixed;
}

.menu.sheet.active .sheet-content{
	bottom:0;
}

.menu.dual .actions-menu{
padding: 0;
}

.menu.sheet .item{
	padding:13px 20px;
}

.menu.sheet .item i{
color: rgba(0, 0, 0, 0.7);
}

.menu.sheet .action-header {
display:flex;
}



@media only screen and (max-width: 767px){
	
.menu .sheet-content label{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;	
}	

.menu.dual .sheet-content{
	right:0;
	top:unset;
    min-width:unset;
	left:0;
	bottom:-100%;
   border-radius:25px 25px 0 0;
   position:fixed;
}

.menu.dual.active .sheet-content{
	bottom:0;
}

.menu.dual .actions-menu{
padding: 0;
}

.menu.dual .item{
	padding:15px 20px;
}


.menu.dual .action-header {
display:flex;
}


	
	
}















.list .item .togglemenu{
    right: -18px;
	right: 0;
    width: 40px;
    top: -4px;
	top:10px;
    position: absolute;
    height: 40px;
    display: flex
;
    justify-content: center;
    align-items: center;
}

.list.card .item .togglemenu{
	position:unset;
    margin-right: -15px;
}


.list .item .togglemenu .bi-three-dots-vertical{
opacity:.3;
}


.list{
display:flex;
width:100%;
flex-direction:column;
row-gapp:35px;
}

.list .item{
width:100%;
float:left;
cursor:pointer;
position:relative;
padding:17.5px 5%;
}

.list .item{
padding:17.5px 5%;
transition:background .5s;
}

.list .tag{
padding:10px 5%;
}

.searchcontainer .dropdown .list{
gap:0;
}

.list .tag{
cursor:pointer;
}

.list .tag.toggled i:before{
content: "\F286";
}
.list .tag i:before{
content: "\F282";
}

.list .item:hover{
background:var(--grey);
}

.list .item:has(.togglemenu:hover, .sheet-content:hover, .overlay:hover){
	background:transparent!important;
}

.cards a, .item a, .list a{
color:inherit;
}


.cards a{
display:flex;
flex-direction:column;
height:100%;
padding:30px 20px 20px 20px;
}

.cards{
background:var(--cardbackgroundcolor);
border-radius:30px;
min-height:135px;
cursor:pointer;
width:100%;
}


.cards .action{
padding:10px 0px;
margin-top:auto;
width:fit-content;
}

.cards .subtitle, .cards:hover .action{
display:inline-block;
padding:10px 20px;
border-radius:30px;
}

.cards:hover .action{
background:var(--whitecolor);
color:#212121;
}



.list .item a{
display:flex;
width:100%;
gap:15px;
flex:1;
}

.list:not(.single) .item .bottom-action{
display:none;
}

.list .title, .list .label, .list .description {
    width: 100%;
    word-break: break-word;
}

.list .item .label span {
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



.searchcontainer .list .item .label span {
    -webkit-line-clamp: 1;
}


.list .item .description span {
    font-size: 12px;
    opacity: .6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.list .item .imgholder{
background-size:cover;background-repeat:no-repeat;background-position:center;
border-radius: 5px;
}

.list .item .imgholder.thumb{
background-size:cover;background-repeat:no-repeat;background-position:center;-webkit-filter:blur(3px);filter: blur(3px);-webkit-filter: blur(3px);-moz-filter: blur(3px);-o-filter: blur(3px);-ms-filter: blur(3px);
}

.list .item .image {
    font-size: 25px;
    border-radius: 5px;
    height: 75px;
    width: 85px;
	min-width:85px;
	position:relative;
	display:flex;
	justify-content:center;
	align-items:center;
}


.list .item.youtube .image {
    width: 110px;
    min-width: 110px;
}

.list:not(.skeleton) .item.youtube .iconholder:before{
position:absolute;
content:"";
top:0;
left:0;
right:0;
bottom:0;
background:rgba(0,0,0,0.15);
border-radius: 5px;
}


.list .item.link:has(img) .iconholder:after{
content:unset!important;	
}


.list .item .image img{
border-radius: 5px;
}

.list .item .image .imgholder, .list .item .image img, .list .item .image .iconholder{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
}

.list .item .image .iconholder{
width:100%;
height:100%;	
border-radius: 5px;
}

.list .item .image img:not(.placeholder){
width:100%;
height:100%;
object-fit:cover;
}


/**Horizontal Cards List**/

.list.card .item a{
width:100%;
flex-direction:column;
gap:10px;
}

.list.card .item .image{
width:100%;
height:150px;
min-width:100%;
}

.list.card.single .item{
width:100%;
}

.list.single .description span{
white-space: pre-wrap;
display:unset;
}

.list.card .item .title{
width:100%;
}



.list .item .title .label{
line-height: 1.4;
}

.list:not(.card) .item:not(.youtube, .link).no-thumbnail .image{
width:60px;	
min-width:60px;
height:45px;
}

.list .item:not(.youtube, .link).no-thumbnail a{
gap:5px;	
}

.list .item:not(.youtube, .link).download .iconholder{
background:rgba(0,0,0,0.3);
}

.list .item:not(.youtube, .link).no-thumbnail .iconholder{
background:var(--iconcolor);
}

.list .item:not(.youtube, .link).no-thumbnail .iconholder{
background:var(--iconcolor);
}


.list .item:not(.youtube, .link).no-thumbnail .iconholder, .list .item.upload .iconholder, .list .item.download .iconholder{
width:42px;
height:42px;
border-radius:50%;
margin:auto;
}

.list:not(.card) .item.no-thumbnail .iconholder{
margin:0 auto;
}

.list .item:not(.youtube, .link).no-thumbnail .iconholder:after{
    content: "\F369";
    position: absolute;
    font-family: bootstrap-icons !important;
    top: calc(50% - 13.5px);
    left: calc(50% - 9px);
    font-size: 18px;
    color: #fff;
}


.list .item.youtube .iconholder:after{
    content: "\f62b";
    position: absolute;
    font-family: bootstrap-icons !important;
    top: calc(50% - 22.5px);
    left: calc(50% - 15px);
    font-size: 30px;
    color: #fff;
}

.list.card .item.youtube .iconholder:after{
    top: calc(50% - 37.5px);
    left: calc(50% - 25px);
    font-size: 50px;
}


.list .item.link.no-thumbnail .iconholder{
background:var(--darkergrey);
}

.list .item.link .iconholder:after{
    content: "\f471";
    position: absolute;
    font-family: bootstrap-icons !important;
    top: calc(50% - 22.5px);
    left: calc(50% - 15px);
    font-size: 30px;
    color: #fff;
}

.list.card .item.link .iconholder:after{
    top: calc(50% - 30px);
    left: calc(50% - 20px);
    font-size: 40px;
}

.list .item.youtube:has(img.hide) .iconholder{
background:var(--youtubebackgroundcolor);
}

.list .item.youtube:has(img.hide) .iconholder:after{
color:var(--youtubebackgroundcolortext);
}

.list .item.upload .iconholder:after, 
.list .item.download .iconholder:after{
position:absolute;
font-family: bootstrap-icons !important;
top:calc(50% - 16.5px);
left:calc(50% - 11px);	
font-size:22px;
color:#fff;
font-weight:800;
}


.list.small .item.upload .iconholder,  .list.small .item.download .iconholder{
width:30px;
height:30px;
}

.list.small .item.download .iconholder:after, .list.small .item.upload .iconholder:after{
font-size:15px;
top: calc(50% - 11.365px);
left: calc(50% - 7.5px);
}

.list .item:not(.youtube, .link).upload .iconholder:after{
content: "\F148";
}

.list .item:not(.youtube, .link).download .iconholder:after{
content: "\f128";
}


.list .item:not(.youtube, .link).downloading .iconholder:after, .list .item:not(.youtube, .link).uploading .iconholder:after{
content:"\f62a";	
font-size: 26px;
top: calc(50% - 19.5px);
left: calc(50% - 13px);
}

.list.card .item.upload .iconholder, .list.card .item.download .iconholder{
scale: 1.2;
}

.list .item{
--file-percentage:1%;
}


.list .item .download-svg{
position:absolute;
display:none;
transform: rotate(-90deg);
}


.list.small .item .download-svg{
scale:.8;
}

.list.card .item .download-svg{
scale:1.2;
}

.list .item.downloading .download-svg, .list .item.uploading .download-svg{
display:block;
}



.list .item .download-svg{
--stroke-dasharray: 502.72px;
--stroke-dashoffset: 492.6656px;
}

/*
circumference = 2 × π × radius

offset = circumference × ((100 - progress)/100) 

stroke-dasharray: 2 × 3.14 × 70 = 439.6

stroke-dashoffset: 439.6 × ((100 - 75)/100) = 109.9
*/


/**File Preview List */

.filepreview.list .item:hover, .filepreview.list .item:active{
background:unset;	
}

.filepreview.list a, .filepreview.list .item.no-thumbnail a{
gap:8px;	
}

.filepreview.list .item .label span{
    -webkit-line-clamp: 1;
}

.filepreview.list .item .image img.placeholder{
margin:auto;
scale:.6;
}

.filepreview.list .item {
    margin: 0;
    border: 1px solid var(--darkgrey);
    width: auto;
	width:100%;
    padding: 10px 10px;
    line-height: 1;
    border-radius: 10px;
}

.filepreview.list .item .image {
    width: 30px!important;
    height: 30px!important;
	min-width:30px!important;
    object-fit: cover;
	font-size:15px;
    background: var(--grey);
}


.filepreview.list .item.no-thumbnail .image {
    background: transparent;
}

.filepreview.list .item.no-thumbnail .iconholder{
    width: 30px!important;
    height: 30px!important;
    margin: auto!important;
}

.filepreview.list .item.no-thumbnail .iconholder:after{
    top: calc(50% - 6px)!important;
    left: calc(50% - 6px)!important;
    font-size: 12px!important;
}

.filepreview.list .item .title {
	flex:1;
}





/** THEME CHECKBOX **/

.checkbox {
  opacity: 0;
  position: absolute;
}

.checkbox-label {
  background-color: var(--checkboxbg);
  color: var(--ballcolor);
  width: 70px;
  height: 33px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  scale:.85;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkbox-label .ball {
  background-color: var(--ballcolor);
  width: 22px;
  height: 22px;
  position: absolute;
  left: 2px;
  top: 5px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}


.checkbox:checked + .checkbox-label .ball {
  transform: translateX(44px);
}


/** MODAL 

**/





/** Amimations */


.freeze:before{
content: attr(data-percentage);
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
background: var(--backgroundcolor);
opacity:.5!important;	
z-index:1;
display:flex;
justify-content:center;
align-items:center;
}

button .loader{
border-color:var(--buttontextcolor);
border-right-color: transparent;
border-bottom-color: transparent;
}

.loader, .freeze:after, .bgloader:after{
	content: "";
	width: 20px;
	height: 20px;
	border:solid 2px;
	border-radius: 50%;
	border-right-color: transparent;
	border-bottom-color: transparent;
	 -webkit-transition: all 0.5s ease-in;
    -webkit-animation-name:             rotate; 
    -webkit-animation-duration:         1.0s; 
    -webkit-animation-iteration-count:  infinite;
    -webkit-animation-timing-function: linear;
    transition: all 0.5s ease-in;
    animation-name:             rotate; 
    animation-duration:         1.0s; 
    animation-iteration-count:  infinite;
    animation-timing-function: linear; 
}


.freeze:after{
content: "";
position:absolute;
display:flex;
margin:auto;
top:calc(50% - 10px);
left:calc(50% - 10px);
color: var(--buttoncolor);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to { 
        transform: rotate(360deg);
    }
}
 

 @-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to { 
        -webkit-transform: rotate(360deg);
    }
}

.progress{
	
	
}

/** Progress Bar **/

.progressbar {
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:4px;
  z-index: 9999;
  overflow:hidden;
}
.progressbar:before {
  content:"";
  position:absolute;
  top:0px;
  left:0px;
  bottom:0px;
  background:var(--primarycolortint2);
  animation:box-1 2100ms cubic-bezier(0.65,0.81,0.73,0.4) infinite;
}
.progressbar:after {
  content:"";
  position:absolute;
  top:0px;
  left:0px;
  bottom:0px;
  background:var(--primarycolortint2);
  animation:box-2 2100ms cubic-bezier(0.16,0.84,0.44,1) infinite;
  animation-delay:1150ms;
}
@keyframes box-1 {
  0% {
    left:-35%;
    right:100%;
  }
  60%,100% {
    left:100%;
    right:-90%;
  }
}
@keyframes box-2 {
  0% {
    left:-200%;
    right:100%;
  }
  60%,100% {
    left:107%;
    right:-8%;
  }
}


/**Onboarding Screen */

/* General Styles */

.onboarding_screen {
  color: var(--color-white);
  display: flex;
  transition: background-color 500ms ease-in-out;
}


/* End General Styles */

.onboarding_screen .wrapper {
  position: fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width: 100%;
  background-color: var(--backgroundcolor);
  text-align: center;
  overflow: hidden;
  animation: fadeInContent 1000ms ease-in-out;
  transition: nonr 500ms ease-in-out;
  transition-property: opacity, visibility;
}

.onboarding_screen .wrapper--has-fade {
  opacity: 0;
  visibility: hidden;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.onboarding_screen .slides-area {
  display: flex;
  height:90%;
  transition: margin 500ms ease-in-out;
}

.onboarding_screen .slides-area__slide {
  width: 100%;
  margin:auto;
}

.onboarding_screen .slide__image {
  max-width: 90%;
  border-radius: 25px;
}


@media only screen and (min-width: 768px){
.onboarding_screen .slide__image {
  max-width: 50%;
}
}

@media only screen and (min-width: 992px){
.onboarding_screen .slide__image {
  max-width: 35%;
}
}

.onboarding_screen .slide__text {
  padding: 0 2.1875rem;
  display:flex;
  flex-direction:column;
  align-items: center;
  justify-content:center;
  margin: 10px 0 0 0;
}

.onboarding_screen .slide__title {
  font-size: min(10vw, 1.75rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}

.onboarding_screen .slide__paragraph {
  font-size: 0.875rem;
  margin-top: 0.3125rem;
}

.onboarding_screen .wrapper .action{
padding: 0 4%;
justify-content: space-between;
}

.onboarding_screen .wrapper .action:not(:has(.button-next)){
justify-content:center;	
}

.onboarding_screen .wrapper .action:not(:has(.button-next)) .button-skip, .onboarding_screen .wrapper .action:not(:has(.button-next)) .paginations-area{
display:none;	
}

.onboarding_screen .button {
  background-color: var(--buttoncolor);
  color:var(--buttontextcolor);
  font-weight: 500;
  letter-spacing: 0.0625rem;
  outline: none;
  border: none;
border-radius:10px ;
  cursor: pointer;
  transition: opacity 250ms ease-in-out;
  width:95%;
  height: 45px;
  padding:12px 10px;
}

.onboarding_screen .button-next {
  border-radius: 50%;
  width: 45px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:16px;
}

.onboarding_screen .button:hover {
  opacity: 0.8;
}

.onboarding_screen .button-next--fade {
  opacity: 0.3;
  pointer-events: none;
  filter: blur(2px);
}

.onboarding_screen .paginations-area {
  pointer-events: none;
}

.onboarding_screen .paginations-area__item {
  display: inline-block;
  width: 0.5rem;
  height: 0.375rem;
  background-color: var(--darkergrey);
  border-radius: 1.5625rem;
}

.onboarding_screen .paginations-area__item:not(:last-child) {
  margin-right: 0.25rem;
}

.onboarding_screen .paginations-area__item--current {
  width: 1.5625rem;
  background-color: var(--buttoncolor);
  animation: activeItem 500ms ease-in-out;
}

@keyframes activeItem {
  from {
    width: 0.5rem;
    background-color: var(--darkergrey);
  }

  to {
    width: 1.5625rem;
    background-color: var(--buttoncolor);
  }
}






/** MEIDA QUERIES **/


/**Tablets**/


@media only screen and (min-width: 768px){
	

.main{
cursor:unset!important;
transform:none!important;
}

.blackview header{
position:unset;
}	
	
.gallery{
max-width:50%;
}	

.menu.dual.active .overlay{
background:transparent;	
}

.menu.sheet .sheet-content{
left:10%;
right:10%;
}

	
.toastcontainer{
	width:300px;
    right:15px;
	left:unset;
}	
	
.list{
flex-direction:row;
row-gap:20px;
}

.list .item{
width:50%;
padding: 10px 1.5%;
}

.list .item{
padding: 10px 1.5%;
}	

.list .tag{
padding:10px 1.5%;
}

	
}


@media only screen and (max-width: 767px){

.app .m_hide{
display:none!important;
}


}


.tw-50{
width:90%!important;
}


@media only screen and (min-width: 768px) and (max-width: 991px){	
.app .t_hide{
display:none!important;
}	

.tw-50{
width:50%!important;
}

.tw-60{
width:70%!important;
}

}


/** Desktop **/
@media only screen and (min-width: 992px){

.tw-50{
width:35%!important;
}

.dw-50{
width:50%!important;
}	

.dw-60, .tw-60{
width:60%!important;
}

.dw-80{
width:80%!important;
}	
	
	
.list{
flex-direction:row;
row-gap:30px;
}

.list .item{
width:33.333%;
}


.list .item{
padding: 10px 1.5%;
}

.list .tag{
padding:10px 1.5%;
}

.list .item .image{
height: 80px;
width: 100px;
}

.list.card{
column-gap:4%;
row-gap:70px;
}

.list.card .item{
width:30.667%;
}

.cards{
width:47%;
}

.card_list{
column-gap:6%;	
row-gap:30px;
}

.d_hide{
display:none!important;
}	


}


.hidden{
visibility:hidden!important;	
}


.hide, .siblinghide{
display:none!important;
}

.visible{
display:flex!important;
}





@media (hover: none) {  

body:has(.menu.dual.active, header.search_toggled){
overflow:hidden;
}

.app .btn-secondary:hover, .app .btn-secondary.btn-white:hover{
background:unset;
}
.app .btn-secondary:active{
background:var(--darkergrey);
}

.app .btn-secondary.btn-white:active{
background:rgba(255, 255, 255,0.15);
}

.app .blackview .btn-secondary:active{
background: rgba(255, 255, 255,0.09);
}

.menu .item:hover{
	background:unset;
}
.list .item:hover{
	background:unset;
}

.menu .item:active, .list .item:active{
	background:var(--darkgrey);
}

}



/** Snackbar **/

#snackbar {
  visibility: hidden;
  min-width: 250px;
  transform: translate(-50%, 0);
  background-color: rgba(0,0,0,.75);
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 10px 20px;
  opacity: .95;
  border-radius: 30px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}




.animate{
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
    transition: all .3s;
}






/** Skeleton **/

.skeleton{
position:relative!important;
}
  

.skeleton ::placeholder{
	color:transparent;
}

.skeleton ::-ms-input-placeholder{
	color:transparent;
}

.skeleton *{
	pointer-events:none;
line-height:1!important;
opacity:1!important;
}


.skeleton{
overflow:hidden!important;
}

.skeleton input:-webkit-autofill,
.skeleton input:-webkit-autofill:hover,
.skeleton input:-webkit-autofill:focus,
.skeleton textarea:-webkit-autofill,
.skeleton textarea:-webkit-autofill:hover,
.skeleton textarea:-webkit-autofill:focus,
.skeleton select:-webkit-autofill,
.skeleton select:-webkit-autofill:hover,
.skeleton select:-webkit-autofill:focus {
transition: background-color 5000s ease-in-out 0s;
-webkit-text-fill-color:transparent!important;
-webkit-box-shadow: none;
}

.skeleton input[type=file]{
background:transparent!important;
color:transparent!important;	
}

.skeleton.list span, .skeleton.card_list span, .skeleton.list h1, .skeleton.card_list h1, .skeleton.list h2, .skeleton.card_list h2, .skeleton.list h3, .skeleton.card_list h3, .skeleton.list h4, .skeleton.card_list h4{
border-radius:10px;
overflow: hidden!important;
display: -webkit-box!important;
-webkit-line-clamp: 1!important;
-webkit-box-orient: vertical;
width:fit-content;
}

.skeleton .cards .subtitle, .skeleton span i{
color:transparent!important;
}


.skeleton h1, .skeleton input[type="file"]::file-selector-button, .skeleton .upload-text-div, .skeleton p, .skeleton form label, .app .skeleton button, .skeleton form input, .skeleton h3, .skeleton h4, .skeleton .secondarybutton, form.skeleton select, .skeleton form i, .skeleton .icon, .skeleton.menubar i, .skeleton h2, .skeleton span, .skeleton.list .item .image, .skeleton .rect, .skeleton.sortcontainer .item, .skeleton input[type="radio"]{
background:var(--darkgrey)!important;
border:0!important;
color:transparent!important;
border-radius:10px!important;
}

.skeleton .item.active{
background:var(--darkgrey)!important;
color:transparent!important;
}

.skeleton.list .iconholder{
background:transparent!important;
}

.skeleton .sortcontainer .item, .skeleton.sortcontainer .item{
border-radius:15px!important;
}

.skeleton .profileplaceholder{
background:var(--darkgrey)!important;
color:transparent!important;	
}

.skeleton .transparent, .skeleton .transparent.profileplaceholder{
background:transparent!important;
}

.skeleton form i{
border-radius:5px!important;
}

.skeleton a{
color:transparent!important;
}

.skeleton form i, .skeleton .sortcontainer .item:not(.active), .skeleton .item i{
display:none!important;
}

.skeleton .iconholder:before, .skeleton .iconholder:after{
content: ""!important;	
}

.skeleton span a{
background:transparent!important;
}

.skeleton:after{
content:'';
position:absolute;
top:0;
left:0;
width:50%;
height:100%;
max-height:100%;
background: var(--shimmercolor);
animation: shimmer 2s infinite linear;
}

@keyframes shimmer{
  from {transform: translateX(-200%);}
  to {transform: translateX(200%);}
}


.skeleton .leftbar .item.active{
background:rgba(255,255,255,1)!important;
}

.skeleton .rightbar .item.active{
color:rgba(255,255,255,1)!important;
}

.skeleton .cards:hover .action{
background:unset!important;
color:unset!important;
}

.skeleton .cards:hover .action{
padding:10px 0px!important;
border-radius: 0px!important;
}

.skeleton.cards:hover .action:before{
content:unset!important;
}
