<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.items {  display: -webkit-box;  display: -webkit-flex;  display: -ms-flexbox;  display: flex;  -webkit-box-pack: justify;  -webkit-justify-content: space-between;      -ms-flex-pack: justify;          justify-content: space-between;  -webkit-flex-wrap: wrap;      -ms-flex-wrap: wrap;          flex-wrap: wrap;  margin-bottom: 0;}
.cmn-toggle-switch {  display: none !important;  position: relative;  overflow: hidden;  margin: 0;  padding: 0;  width: 38px;  height: 30px;  font-size: 0;  text-indent: -9999px;  -webkit-appearance: none;  -moz-appearance: none;  appearance: none;  box-shadow: none;  border-radius: none;  border: none;  cursor: pointer;  -webkit-transition: background 0.3s;          transition: background 0.3s; display:block; background:none;}
.cmn-toggle-switch:focus {  outline: none;}
.cmn-toggle-switch span {  display: block;  position: absolute;  top: 15px;  left: 0;  right: 0;  height: 4px;  background: #234287; margin:0; width:100%; }
.cmn-toggle-switch span::before,
.cmn-toggle-switch span::after {  position: absolute;  display: block;  left: 0;  width: 100%;  height: 4px;  background-color: #234287;  content: "";}
.cmn-toggle-switch span::before {  top: 7px;}
.cmn-toggle-switch span::after {  bottom: 7px;}

/*Menu Style*/
.cmn-toggle-switch__htx {  }
.cmn-toggle-switch__htx span {  -webkit-transition: background 0 0.3s; transition: background 0 0.3s;}
.cmn-toggle-switch__htx span::before,
.cmn-toggle-switch__htx span::after {  -webkit-transition-duration: 0.3s, 0.3s;          transition-duration: 0.3s, 0.3s;  -webkit-transition-delay: 0.3s, 0;          transition-delay: 0.3s, 0;}
.cmn-toggle-switch__htx span::before {  -webkit-transition-property: top, -webkit-transform;          transition-property: top, transform;}
.cmn-toggle-switch__htx span::after {  -webkit-transition-property: bottom, -webkit-transform;          transition-property: bottom, transform;}
/* active state, i.e. menu open */
.cmn-toggle-switch__htx.active {  }
.cmn-toggle-switch__htx.active span {  background: none;}
.cmn-toggle-switch__htx.active span::before {  top: 0;  -webkit-transform: rotate(45deg);      -ms-transform: rotate(45deg);          transform: rotate(45deg);}
.cmn-toggle-switch__htx.active span::after {  bottom: 0;  -webkit-transform: rotate(-45deg);      -ms-transform: rotate(-45deg);         transform: rotate(-45deg);}
.cmn-toggle-switch__htx.active span::before,
.cmn-toggle-switch__htx.active span::after {  -webkit-transition-delay: 0, 0.3s;          transition-delay: 0, 0.3s;}

</pre></body></html>