/* Parishsoft Styles */


#box {
    /*float: left;*/
    display: inline-block;
    width: 135px;
    height: 150px;
    margin: 10px;
    padding: 5px;
    text-align: center;
    border: 1px solid #F1F1F1;
    border-radius: 5px;
    background: #fbfbfb;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0px 1px 3px 0px grey;
}

#box-img {
    width: 100%;
}

.login-page {
  width: 360px;
  padding: 8% 0 0;
  margin: auto;
}
.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #4CAF50;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
  background: #43A047;
}
.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}
.form .message a {
  color: #4CAF50;
  text-decoration: none;
}
.form .register-form {
  display: none;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
.container .info {
  margin: 50px auto;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a;
}
.container .info span {
  color: #4d4d4d;
  font-size: 12px;
}
.container .info span a {
  color: #000000;
  text-decoration: none;
}
.container .info span .fa {
  color: #EF3B3A;
}

select,input,textarea{
	width: 96%;
  padding: 2%;
  border-radius: 6px;
  font-family: inherit;
  border: 1px solid #ccc;
}

.w3-red {
	color: #fff !important;
    background-color: #f44336 !important;
}

.w3-black{
	color: #fff !important;
    background-color: #000 !important;
}

.w3-bar {
    width: 100%;
    overflow: hidden;
}

.w3-center .w3-bar {
    display: inline-block;
    width: auto
}

.w3-bar .w3-bar-item {
    padding: 8px 16px;
    float: left;
    width: auto;
    border: none;
    display: block;
    outline: 0;
	  color: #fff !important;
    background-color: #000;
}

.w3-bar .w3-dropdown-hover,.w3-bar .w3-dropdown-click {
    position: static;
    float: left
}

.w3-bar .w3-button {
    white-space: normal
}

.w3-bar-block .w3-bar-item {
    width: 100%;
    display: block;
    padding: 8px 16px;
    text-align: left;
    border: none;
    white-space: normal;
    float: none;
    outline: 0
}

.w3-bar-block.w3-center .w3-bar-item {
    text-align: center
}

.w3-block {
    display: block;
    width: 100%
}

#btn{
	width:100%;
	background:#0e5187;
	color:white;
	border: 2px solid #0e5187;
	padding: 1%;
	border-radius: 5px;
}

#btngreen{
	width:100%;
	background:#4bcfd9;
	/*#115618;*/
	border:2px solid #4bcfd9;
	color:white;
	padding: 1%;
	border-radius: 5px;
}

#btnpink{
    width:100%;
	background:#6d0e87;
	border:2px solid #6d0e87;
	color:white;
	padding: 1%;
	border-radius: 5px;
}

#display_modal {
	  height:80vh;
	  overflow:scroll;
    z-index: 100;
    position: fixed;
    background: whitesmoke;
    width: 78%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 20px 2px black;
    margin-left: 0%;
    margin-right: 0%;
}

.modal-content{
	padding: 10px;
    background: none;
    border: 0px;
    box-shadow: none;
}

.form-container {
  max-width: 100%;
  background-color: #fff;
  padding: 32px 24px;
  font-size: 14px;
  font-family: inherit;
  color: #212121;
  display: contents;
  flex-direction: row;
  gap: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084), 0px 2px 3px rgba(0, 0, 0, 0.168);
}

.form-container button:active {
  scale: 0.95;
}

.form-container .logo-container {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.form-container .form {
  display: flex;
}

.form-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-container .form-group-half {
  width: 48%;
  float: left;
  padding: 1%;
}


.form-container .form-group-half label {
  display: block;
  margin-bottom: 5px;
}

.form-container .form-group-half input, select {
  width: 96%;
  padding: 2% !important;
  border-radius: 6px;
  font-family: inherit;
  border: 1px solid #ccc;
}

.form-container .form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-container .form-group input, select {
  width: 96%;
  padding: 2% !important;
  border-radius: 6px;
  font-family: inherit;
  border: 1px solid #ccc;
}

.form-container .form-group input::placeholder {
  opacity: 0.5;
}

.form-container .form-group input:focus {
  outline: none;
  border-color: #1778f2;
}

.form-container .form-submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  color: #fff;
  background-color: #212121;
  border: none;
  width: 100%;
  padding: 12px 16px;
  font-size: inherit;
  gap: 8px;
  margin: 12px 0;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084), 0px 2px 3px rgba(0, 0, 0, 0.168);
}

.form-container .form-submit-btn:hover {
  background-color: #313131;
}

.form-container .link {
  color: #1778f2;
  text-decoration: none;
}

.form-container .signup-link {
  align-self: center;
  font-weight: 500;
}

.form-container .signup-link .link {
  font-weight: 400;
}

.form-container .link:hover {
  text-decoration: underline;
}

/*Sub Tabs*/

.stab-bar {
    display: flex;
    width: 100%;
    background-color: #6c6565;
    overflow-x: auto;
    border-bottom: 2px solid #f44336;
  }

  .stab-btn {
    padding: 10px 18px;
    border: none;
    background-color: transparent;
		width: 150px;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    outline: none;
    transition: background-color 0.2s, color 0.2s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
  }

  .stab-btn:hover {
    background-color: #2e2e2e;
    color: #fff;
  }

  .stab-btn.active {
    color: #fff;
    border-bottom: 3px solid #f44336;
    background-color: #2e2e2e;
  }

  .stab-panel {
    display: none;
    border: 1px solid #ddd;
    border-top: none;
  }

  .stab-panel.active {
    display: block;
  }

  .stab-content {
    min-height: 300px;
    padding: 16px;
  }


