.csn-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  width: 100%;
  letter-spacing: 0.3px;
  height: 2.5rem;
  border: 0;
  background-color: transparent;
  padding: 20px 18px;
  cursor: pointer;
  color: #30184C;
  border-radius: 8px;
  outline-offset: 3px;
  opacity: 1 !important;
  gap: 0.5rem;
}

.csn-btn span {
   margin-top: -1px;
}

@media screen and (max-width: 915px){
  .csn-btn {
     justify-content: center;
  }
}
   
.csn-btn:is(:focus, :active){
  outline-color: #30184C;
}
   
.csn-btn--only-icon {
   border-radius: 16px;
   padding: 0.8rem;
}

.csn-btn--with-icon {
   padding: 20px 18px;
}
.csn-btn--with-icon.csn-btn--mobile {
   padding: 20px 1rem;
}

.csn-btn--primary {
   background-color: #3C1E5F;
   color: #fff;
}
   
.csn-btn--primary:hover {
   background-color: #30184C;
}
   
.csn-btn--secondary {
   color: #3C1E5F;
   border: 2px solid #E2DAEB;
}
   
.csn-btn--secondary:hover {
   border: 2px solid #DDCFEC;
}
   
.csn-btn--tertiary {
   background-color: transparent;
   border: 0;
}
   
.csn-btn--tertiary:hover {
   background-color: #EBE8EF;
}
   
.csn-btn--eservice {
   background-color: #FFD164;
   color: #000;
}
   
.csn-btn--eservice:hover {
   background-color: #FFB536;
}
   
.csn-btn--eservice-secondary {
   border: 2px solid #FFD164;
   color: #000;
}

.csn-btn--eservice-secondary:hover {
   border: 2px solid #FFB536;
}

.csn-btn--menu {
  border: 2px solid #FFD164;
  color: #fff;
}

.csn-btn--menu svg {
  transition:transform .2s ease;
}

.csn-btn--menu.csn-login-toggle--open svg {
   transform: rotate(180deg);
}

@media screen and (max-width: 915px){
  .csn-btn--menu {
     border: none;
  }

       
}

.csn-btn--menu:is(:hover, :focus, :active){
  border-color: #FFB536;
  opacity: 1;
}

.csn-btn--menu:is(:focus, :active) {
   outline: 2px solid #fff;
}

.csn-hide-outlines .csn-btn--menu:is(:focus, :active) {
   outline: none;
}
/* 
	Not generics
*/

.csn-btn--mobile-search {
   border-color: #D66F70;
}