/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.sn-content {
    display: inline;
}

.sn-button {
    width: 10%;
    /*display: inline-block;*/
}

.site-notice .text {
    /*width: 90%;*/
    max-width: 1200px;
    display: inline-block;
}
.site-notice {
    font-family: sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 50px 25px;
    background-color: #145474;
    color: #fff;
    text-align: center;
    z-index: 9999999;
}

.site-notice .site-notice-title-header {
    font-weight: bold;
    color: #fff;
}

.site-notice a {
    font-weight: bold;
    text-decoration: underline;
    color: #fff;
}

.site-notice-dismiss {
    background: none;
    border: 0;
    color: #fff;
    font-size: 24px;
    position: absolute;
    right: 15px;
    top: 10%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 20px;
}

.site-notice-style-default {
    background-color: #145474;
}

.site-notice-style-default .text {
    color: #fff;
}

.site-notice-style-one {
    background-color: #d11611;
}

.site-notice-style-one .text {
}

.site-notice-style-two {
    background-color: #ffae42;
}

.site-notice-style-two .text {
}

.site-notice-style-three {
    background-color: #059033;
}

.site-notice-style-three .text {
}

/* Ashlesha's design adjustments*/

button.site-notice-dismiss {
    transform: none;
    top: 0;
    right: 20px;
}
@media (max-width: 480px) and (min-width: 320px){
    .site-notice .text {
        margin-right: -5px;
        padding-right: 7px;
    }
	button.site-notice-dismiss {
        top: 5px;
        right: 20px;
    }
}

/*
##Device = Low Resolution Tablets, Mobiles (Landscape)
##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
	.site-notice {
		max-height:90vh;
	}

  .site-notice .text {
      overflow-y: auto;
      height: auto;
	    max-height:50vh;
  }
  .site-notice .sn-content .text::-webkit-scrollbar{
    width: 10px;
    background: #ccc;
  }
  /*handle*/
  .site-notice .sn-content .text::-webkit-scrollbar-thumb {
    background-color: #fff;
    border: 2px solid #f5f5f5;
  }
  .site-notice .sn-content .text::-webkit-scrollbar-track
  {
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
      background-color: #F5F5F5;
  }
}

/*
##Device = Most of the Smartphones Mobiles (Portrait)
##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

		.site-notice {
		max-height:90vh;
	}


  .site-notice .text {
      overflow-y: auto;
      height: auto;
	  max-height:50vh;
  }
  .site-notice .sn-content .text::-webkit-scrollbar{
    width: 10px;
    background: #ccc;
  }
  /*handle*/
  .site-notice .sn-content .text::-webkit-scrollbar-thumb {
    background-color: #fff;
    border: 2px solid #f5f5f5;
  }
  .site-notice .sn-content .text::-webkit-scrollbar-track
  {
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
      background-color: #F5F5F5;
  }
}
