@charset "UTF-8";
/* CSS Document */

/*html,
body {
  overflow-x: hidden;  Prevent scroll on narrow devices 
}*/

/*
 * Off Canvas
 * --------------------------------------------------
 */
@media screen and (max-width: 767px) {
	html,
body {
  overflow-x: hidden; /* Prevent scroll on narrow devices */
}

  .row-offcanvas {
    position: relative;
    -webkit-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
  }

  .row-offcanvas-right {
    right: 0;
  }

  .row-offcanvas-left {
    left: 0;
  }

  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -50%; /* 6 columns */
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -50%; /* 6 columns */
  }

  .row-offcanvas-right.active {
    right: 50%; /* 6 columns */
  }

  .row-offcanvas-left.active {
    left: 50%; /* 6 columns */
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 50%; /* 6 columns */
  }

  .sidebar-offcanvas div[class*="col-xs-"] {
      padding: 0px;
  }
  .sidebar-offcanvas div.twist {
      padding-right: 0px;
  }


  .offcanvas-close {
		float: right;
		color: #359139;
		background-color: #ffffff;
		margin: 3px 3px 0 5px;
	}

	.offcanvas-close button {
		color: #359139;
		background-color: #ffffff;
		border: none;
		font-size: 20px;
	}
	
	.offcanvas-close button:hover, .offcanvas-close button:active {
		color: #981b4c !important;
		background-color: #ffffff !important;
		border: none;
		font-size: 20px;
	}
	
	.offcanvas-close button:active {
		color: #2c328d !important;
	}
}