 
/* Existing styles for side tab */

.side-tab-container {

  position: fixed;

  z-index: 9999;

}

.side-tab-right { right: 0; }

.side-tab-left { left: 0; }

.side-tab-link {

  display: block;

  padding: 23px 3px;

  writing-mode: vertical-rl;

  transform: rotate(180deg);

  text-align: center;

  font-weight: bold;

  text-decoration: none;

  border-radius: 0px 7px 7px 0px;

}

.side-tab-hide-mobile { display: none; }

@media (min-width: 768px) {

  .side-tab-hide-mobile { display: block; }

}
 
/* Popup styles */

.nsst-popup {

  display: none;

  position: fixed;

  z-index: 10000;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  overflow: auto;

  background-color: rgba(0,0,0,0.6);

}

.nsst-popup-content {

  background: #fff;

margin: 3% auto 0 auto;

  padding: 20px;

  border-radius: 8px;

  width: 90%;

  max-width: 530px;

  position: relative;

}

.nsst-popup-close {

  position: absolute;

  top: 10px;

  right: 15px;

  font-size: 22px;

  cursor: pointer;

}

 