.blur {
  background-color: rgba(255, 255, 255, 0.3);
 -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

}



.diff-corners {
    border-radius: 0 0 90px 90px;
}


/* ease it */
.ease { transition: all .2s ease-in-out; }
/* ease it */


.rounded-corners {
    border-radius: 25px 25px 25px 25px;
}




#splash-container, #main-canvas { 
overflow: visible !important; 
}
.position-sticky { 
position: sticky!important;
top:0!important;
}



/* THIS CODE IS USED TO HIDE DROPDOWN ELEMENTS AND ALLOW THE CUSTOMIZATION SEEN */


.icon-f-wide-darr::before {
    content: "";
}


input {
    -webkit-appearance: textfield;
    color: text;
    background-color: transparent;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: inset;
    border-right-style: inset;
    border-bottom-style: inset;
    border-left-style: inset;
    border-top-color: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    -webkit-rtl-ordering: logical;
    -webkit-user-select: text;
    cursor: auto;
}


.sf.nav.horizontal-dropdown-persistent .nav-item a:hover, .sf.nav.horizontal-dropdown-v2 .nav-item a:hover {
    background-color: #FFFFFF;
}


/* THIS CODE IS USED TO HIDE DROPDOWN ELEMENTS AND ALLOW THE CUSTOMIZATION SEEN */



/* ticker - outer container */
.tcontainer {
width: 100%;
overflow: hidden; /* Hide scroll bar */
}
/* ticker - outer container */
/* ticker - middle container */
.ticker-wrap {
width: 100%;
padding-left: 100%; /* Push contents to right side of screen */
}
/* INNER CONTAINER */
@keyframes ticker {
0% { transform: translate3d(0, 0, 0); }
100% { transform: translate3d(-100%, 0, 0); }
}

.ticker-move {
/* Basically move items from right side of screen to left in infinite loop */
display: inline-block;
white-space: nowrap;
padding-right: 100%;
animation-iteration-count: infinite;
animation-timing-function: linear;
animation-name: ticker;
animation-duration: 80s;
}

.ticker-move:hover{
animation-play-state: paused; /* Pause scroll on mouse hover */
}
/* ticker - middle container */
/* ticker - content items */
.ticker-item{
display: inline-block; /* Lay items in a horizontal line */
}
/* ticker - content items */