@charset "utf-8";
/* CSS Document */


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face { src:url(../fonts/Poppins/Poppins-Black.ttf), format('ttf');}
@font-face { src:url(../fonts/Poppins/Poppins-Bold.ttf), format('ttf');}
@font-face { src:url(../fonts/Poppins/Poppins-ExtraBold.ttf), format('ttf');}
@font-face { src:url(../fonts/Poppins/Poppins-ExtraLight.ttf), format('ttf');}
@font-face { src:url(../fonts/Poppins/Poppins-Light.ttf), format('ttf');}
@font-face { src:url(../fonts/Poppins/Poppins-Medium.ttf), format('ttf');}
@font-face { src:url(../fonts/Poppins/Poppins-Regular.ttf), format('ttf');}
@font-face { src:url(../fonts/Poppins/Poppins-SemiBold.ttf), format('ttf');}
@font-face { src:url(../fonts/Poppins/Poppins-Thin.ttf), format('ttf');}


/** BASIC CSS **/

* { 
	margin: 0; 
	padding: 0; 
	border:none; 
	outline:none;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box;
	box-sizing: border-box;	}
	

html, body{
	height:auto;
	max-width:100%;
	min-width:100%;
	background:#ffffff;
	font-family: 'Poppins', sans-serif;
	font-size:14px;
	line-height:18px; 
	color:#000;
	font-weight:normal;
	font-style:normal;
	overflow-x:hidden;}
	
p {
	font-size: 15px;
	color: #848484;
	line-height: 23px;
	font-weight: 400;}
	
h1,h2,h3,h4,h5,h6{
     margin:0;
	 color:#555;}
	 
ul, ol{
	list-style:none;
	margin:0;
	padding:0;}

a {
	text-decoration:none;
	outline: none;
	color: #4b5460;}
	
a:focus { 
	outline: none; }
	
a:focus {
	outline: none;}
	
a:hover, a:focus {
	color: #d65470;
	text-decoration: none;}
		
hr{
	border-top:1px solid #333;}
	
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;}
	
::selection {
	text-shadow: none;
	background: #d65470;
	color: #fff;}
	
::-moz-selection {
 text-shadow: none;
 background: #d65470;
 color:#fff;}
 
a, input, select, textarea, img {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;}
		
.clearfix {
	clear: both;
	font-size: 0;
	line-height: 0;
	margin: 0;
	padding: 0;}
			
.hidden{ 
	display: none !important;}
	
.show{ 
	display: block !important;}
	
.floatl{ 
	float: left;}
	
.floatr{
	float: right;}
	
.nopad{
	padding:0 !important;}

.nopadl{
	padding-left:0;}
	
.nopadr{
	padding-right:0;}
	
.nomar{
	margin:0;}
	
.nomarl{
	margin-left:0;}
	
.nomarr{
	margin-right:0;}
	
.porel{
	position:relative;}
	
/** Basic css end here **/ 

.main-wrap{
	max-width:767px;
	min-height:100vh;
	margin:auto;
}


.login-bg{
	background: url(../images/login_bg.png) top center;
	background-size: 100% 58vh;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
}


.logo{
	padding-top: 50px;
}
.logo img{
	display: block;
	width: 260px;
	margin: auto;
}

.login-box{
	width: 85%;
	height: auto;
	background: #fff;
	border-radius: 30px;
	margin:40px auto 0;
	padding: 30px 15px;
	-webkit-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.25);
}

.login-box h1{
	font-size: 20px;
	color: #000;
	text-align: center;
	font-weight: 600;
	letter-spacing: 2px;
}

.login-box p{
	font-size: 13px;
	color: #999999;
	text-align: center;
}

.login-box .form-group{
	position: relative;
}

.login-box .form-group span{
	position: absolute;
	top: 10px;
	left: 10px;
}

.login-box span img{
	width: 15px;
}

.login-box .form-control{
	padding-left: 40px;
	font-weight: 600;
	font-size: 12px;
	height: 40px;
	border-radius: 40px;
	border: none;
	-webkit-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.18);
	-moz-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.18);
	box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.18);
}

.login-box .form-control::placeholder{
	text-transform: uppercase;
}


.login-box  .btn-danger{
	font-size: 13px;
	text-transform: uppercase;
	padding: 8px 60px;
	border-radius: 40px;
	letter-spacing: 1px;
	font-weight: 600;
}

.forgot-password{
	text-align: right;
}

.forgot-password a{
	font-size: 11px;
	color: #d13e4c;
	font-weight: 600;
}

.register{
	text-align: center;
	width: 85%;
	height: auto;
	background: #fff;
	border-radius: 30px;
	margin:40px auto 40px;
	padding: 30px 15px;
	-webkit-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.25);
}
.register h2{
	font-size: 15px;
	font-weight: bold;
	color: #d13e4c;
}

.register .btn-primary{
	margin-top: 15px;
	padding: 7px 40px;
	color: #fff;
	background: #000 !important;
	border-color:#000 !important;
	text-transform: uppercase;
	border-radius: 40px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
}

footer{
	background: url(../images/footer.png) bottom center;
	background-size: 100% 100%;
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
}

footer h5{
	margin: 0;
	text-align: center;
	font-size: 10px;
	text-transform: uppercase;
	color: #fff;
	font-weight: bold;
	padding-top: 50px;
}

footer p{
	margin: 4px 0 0 0;
	text-align: center;
	font-size:9px;
	text-transform: uppercase;
	color: #fbacb4;
	font-weight: bold;
	line-height: normal;
}

.main-bg{
	background: url(../images/login_bg.png) top center;
	background-size: 100% 100%;
    width: 100%;
    height: 58vh;
    background-repeat: no-repeat;

}

header{
	padding: 15px;
}
.menu-bar{
	text-align: right;
}
.menu-bar a{
	font-size: 25px;
	color: #fff;
}

.member-card{
	padding: 0 15px;
	margin-top: 70px;
	position: relative;
}

.member-card img{
	width: 100%;
}

.card-overflow{
	position: absolute;
	height: 300px;
	background: url(../images/card-bg-layer.png) top center;
	background-size: 100% 100%;
    transform: rotate(15deg);
    width: 100%;
    top: -45px;
    left: 0;
}

.card-body-main{
	position: relative;
    width: 100%;
}

.card-content{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}


.card-content{
	padding: 20px 20px;
}
.card-content h5{
	font-size: 14px;
	font-weight: bold;
	color: #000;
}

.card-logo{
	text-align: right;
}
.card-logo img{
	width: 60px;
}

.card-content h1{
	margin-top: 40px;
	font-size: 20px;
	color: #fff;
}

.card-details{
	margin-top: 4vh;
}
.card-details label{
	font-size: 14px;
	font-weight: 600;
	color: #000;
}

.card-details h6{
	font-size: 12px;
	color: #fff;
}

.events-area {
	margin-top: 40px;
	position: relative;
    z-index: 99999;
}
.events-tab ul{
	text-align: center;
}

.events-tab ul li{
	display: inline-block;
}

.events-tab ul li a{
	display: inline-block;
	background: #000;
	padding: 8px 20px;
	color: #fff;
	font-weight: 600;
	width: 130px;

}

.events-tab ul li a.active{
	background: #d13e4c;
}

.events-tab ul li:nth-child(1) a{
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	margin-right: -3px;
}

.events-tab ul li:nth-child(2) a{
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
}

.events-box{
	margin-top: 20px;
	padding: 0 15px;
}

.events{
	margin-bottom: 10px;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	-webkit-box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
	-moz-box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
	box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
}

.events-box{
	display: none;
}

.tab-active{
	display: block;
}

.event-img{
	width: 35%;
    position: relative;
}

.event-overlay{
    position: absolute;
    background: rgba(0,0,0,0.5);
    padding: 5px 0;
    width: 100%;
    z-index: 9999;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
}

.event-overlay h5{
    font-size:11px;
    color: #fff;
    font-weight: 600; 
    text-transform: uppercase;
    
}

.event-content{
	width: 55%;
	padding: 5px;
}

.event-button{
	width: 10%;
}


.event-img img{
	background-size: cover;
    width: 100%;
    height: 93px;
}

.event-content h1{
	font-size: 13px;
	color: #000;
	font-weight: 600;
}

.event-content h5{
	margin-top: 5px;
	font-size: 10px;
	color: #d13e4c;
}

.event-content p{
	font-size: 8px;
	color: #9a9a9a;
	line-height: 15px;
}

.event-button {
	margin-top: 30px;
}
.event-button img{
	width: 20px;
}

.more-events{
	text-align: center;
}

.more-events label{
	display: block;
	font-size: 14px;
	color: #000;
	font-weight: 600;
}

.more-events a{
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	background: #d13e4c;
	color: #fff;
}


.subcription{
	padding:0 15px 80px 15px;
}
.subcription h1{
	font-size: 14px;
	color: #000;
	font-weight: 600;
}

.subcription-box{
	padding: 30px 10px;
	margin-top: 15px;
	width: 100%;
	border-radius: 10px;
	background-image: linear-gradient(to bottom, #f04e74, #fc5361, #ff5d4b, #ff6c31, #ff7d02);
}

.subcription-box h2{
	font-size: 50px;
	color: #fff;
	font-weight: bold;
}

.subcription-box h5{
	font-size: 13px;
	color: #fff;
	font-weight: 600;
}


.subcription-box h2 label{
	font-size: 12px;
}

.pad-r-5{
	padding-right: 5px;
}

.pad-l-5{
	padding-left: 5px;
}

.bottom-menu {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	height:auto;
	padding: 10px 0;
	background: #fff;
	z-index: 9999999;
	-webkit-box-shadow: 0px -5px 14px -1px rgba(0,0,0,0.23);
	-moz-box-shadow: 0px -5px 14px -1px rgba(0,0,0,0.23);
	box-shadow: 0px -5px 14px -1px rgba(0,0,0,0.23);
}

.bottom-menu  ul{
	display: flex;
	line-height: normal;
}
.bottom-menu  ul li{
	width: 33.3333333333%;
	display:block;
	text-align: center;
}

.bottom-menu  ul li a{
	color: #011b27;
}

.bottom-menu  ul li .active{
	color: #d74573;
}

.bottom-menu  ul li a i{
	font-size: 20px !important;
}

.bottom-menu ul li a label{
	margin: 0;
	display: block;
	font-size: 12px;
}

.main-wrap-padding{
	padding-bottom: 90px;
}

.header-bg{
	height: 60px;
	background-size: cover;
}

.event-details{
	padding: 10px 15px;
}
.event-d-image img{
	width: 100%;
}

.event-d-text {
	margin-top: 15px;
}
.event-d-text h1{
	font-size: 18px;
	color: #000;
	font-weight: 600;
	text-align: center;
}

.event-d-text h5{
	margin-top: 10px;
	font-size: 12px;
	color: #000;
	font-weight: 600;
	border: 1px solid #E46773;
	border-radius: 5px;
	padding: 5px;
	text-align: center;
}

.event-d-text p{
	margin-top: 15px;
	font-size: 12px;
    line-height: 23px;
}

.more-info-btn .btn-danger {
    font-size: 13px;
    text-transform: uppercase;
    padding: 8px 60px;
    border-radius: 40px;
    letter-spacing: 1px;
    font-weight: 600;
}

.pricing{
	padding:15px;
} 
.pricing .table{
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
	-moz-box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
	box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
}

.pricing .table tr td{
	font-size: 15px;
	font-size: 13px;
    font-weight: 600;
}
.pricing .table tr td:nth-child(2){
	text-align: right;
	color: #DC3545;
}

.available{
	padding:15px;
	text-align: center;
	margin-top: 20px;
}

.available h1{
	font-size: 80px;
	font-weight: bold;
	color: #DC3545;
	line-height: 44px;
}

.available h1 span{
	display: block;
	font-size: 12px;
	color: #000;
}

.extra-service{
	padding: 15px;
}


.extra-service h1{
	font-size: 15px;
	font-weight: bold;
	color: #DC3545;
	text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
}
.extra-service ul li{
	padding: 5px 0;
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #000;
}

.extra-service ul li i{
	color: #DC3545;
	margin-right: 8px;
}

.join-now {
	text-align: center;
}
.join-now .btn-success{
	font-size: 13px;
    text-transform: uppercase;
    padding: 8px 60px;
    border-radius: 40px;
    letter-spacing: 1px;
    font-weight: 600;
}

.alternative{
	margin-top: 20px;
	padding: 15px;
}
.alternative h1{
	font-size: 20px;
	font-weight: bold;
	color: #ff930c;
	text-align: center;
	margin-bottom: 6px;

}

.alternative h5 {
    font-size: 14px;
    line-height: 21px;
    color: #7c7c7c;
    text-align: center;
}

.become-member-now{
	margin-top: 20px;
	text-align: center;
}
.become-member-now .btn-warning{
	font-size: 13px;
    text-transform: uppercase;
    padding: 8px 60px;
    border-radius: 40px;
    letter-spacing: 1px;
    font-weight: 600;
}

.partecipant {
	margin-top: 20px;
}

.partecipant h5{
	font-size: 14px;
	color: #000;
	font-weight: 600;
	margin-bottom: 5px;
}
.partecipant h1{
	font-size: 18px;
	color: #DC3545;
	font-weight: 600;
}

.partecipant h1 span{
	color: #000;
	float: right;
}

.add-guest {
	margin-top: 40px;
}
.add-guest h5{
	font-size: 14px;
	color: #000;
	font-weight: 600;
	margin-bottom: 10px;
}

.add-guest h5 i{
	color: #DC3545;
}

.add-btn{
	text-align: right;
}
.add-btn a{
	display: inline-block;
	font-size: 12px;
	color: green;
	border: 2px solid green;
	padding: 2px 10px;
	border-radius: 5px;
}

.add-btn a i{
	margin-right: 5px;
}

.add-guest .table{
	overflow: hidden;
	margin-top: 10px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
	-moz-box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
	box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
}

.add-guest .table thead th{
	background: #DC3545;
	color: #fff;
	font-size: 12px;
	padding: .45rem .75rem;
}

.add-guest .table thead th span{
	float: right;
}

.add-guest .table tr td{
	padding: .45rem .75rem;
	font-size: 13px;
	font-weight: 500;
}

.extra-service p{
	font-size: 13px;
	line-height: 18px;
	text-align: center;
}

.total-to-pay{
	margin-top: 30px;
	margin-bottom: 20px;
}
.total-to-pay ul{
	display: flex;
}

.total-to-pay ul li{
	display: block;
	width: 100%;
	font-size: 18px;
	color: #000;
	font-weight: 600;
}

.total-to-pay ul li:last-child{
	text-align: right;
	color: #DC3545;
	font-size: 26px;
	font-weight: bold;
}

.custom-pop .modal-title{
	font-size: 17px;
	font-weight: bold;
	color: #000;
	text-transform: uppercase;
}

.custom-pop button.close{
	outline: none !important;
	color: red;
}

.custom-pop .form-control{
	border: 2px solid #ccc;
}

.join-confirm{
	padding: 100px 15px 0 15px;
	text-align: center;
}

.join-confirm h1{
	margin-top: 20px;
    font-size: 14px;
    color:#40BB3D;
    font-weight: 600;
    letter-spacing: 0px;
}

.extra-service-add{
	border: 2px solid #f5f5f5;
	background: #eee;
}

.extra-service-add label{
	display: block;
	margin: 0;
	font-size: 12px;
	font-weight: 600;
}
.extra-service-add label input{
	float: right;
	width: 20px;
    height: 20px;
}

.go-to-home{
	margin-top: 15px;
}
.m-g-r{
	font-size: 12px;
	color: red;
	text-align: right;
	font-weight: 600;
}

/*** Profile page ***/

.my-profile{
    background: #fff;
    padding: 15px;
    -webkit-box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
    
}

.my-profile-wrap{
	margin-top: 20px;
    padding:0;
}

.my-profile-wrap h1{
    font-size: 20px;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    
}

.my-profile{
    margin-top: 20px;
}

  
  .form-wizard {
	color: #888888;
  }
 

  .form-wizard .form-wizard-header {
	text-align: center;
  }
 
  .form-wizard .form-wizard-next-btn:hover, .form-wizard .form-wizard-next-btn:focus, .form-wizard .form-wizard-previous-btn:hover, .form-wizard .form-wizard-previous-btn:focus, .form-wizard .form-wizard-submit:hover, .form-wizard .form-wizard-submit:focus {
	color: #ffffff;
	opacity: 0.6;
	text-decoration: none;
  }
  .form-wizard .wizard-fieldset {
	display: none;
  }
  .form-wizard .wizard-fieldset.show {
	display: block;
  }
  .form-wizard .wizard-form-error {
	display: none;
	background-color: #d70b0b;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
  }


  .form-wizard .form-control:focus {
	box-shadow: none;
  }
  .form-wizard .form-group {
	position: relative;
	margin: 25px 0;
  }
  .form-wizard .wizard-form-text-label {
	position: absolute;
	left: 10px;
	top: 16px;
	transition: 0.2s linear all;
  }
  .form-wizard .focus-input .wizard-form-text-label {
	color: #d65470;
	top: -18px;
	transition: 0.2s linear all;
	font-size: 12px;
  }
  .form-wizard .form-wizard-steps {
	margin: 30px 0;
  }
  .form-wizard .form-wizard-steps li {
	width: 50%;
	float: left;
	position: relative;
  }
  .form-wizard .form-wizard-steps li::after {
	background-color: #f3f3f3;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	border-bottom: 1px solid #dddddd;
	border-top: 1px solid #dddddd;
  }
  .form-wizard .form-wizard-steps li span {
	background-color: #dddddd;
	border-radius: 50%;
	display: inline-block;
	height: 40px;
	line-height: 40px;
	position: relative;
	text-align: center;
	width: 40px;
	z-index: 1;
	font-size: 15px;
	font-weight: 600;
  }
  .form-wizard .form-wizard-steps li:last-child::after {
	width: 50%;
  }
  .form-wizard .form-wizard-steps li.active span, .form-wizard .form-wizard-steps li.activated span {
	background-color: #d65470;
	color: #ffffff;
  }
  .form-wizard .form-wizard-steps li.active::after, .form-wizard .form-wizard-steps li.activated::after {
	background-color: #d65470;
	left: 50%;
	width: 50%;
	border-color: #d65470;
  }
  .form-wizard .form-wizard-steps li.activated::after {
	width: 100%;
	border-color: #d65470;
  }
  .form-wizard .form-wizard-steps li:last-child::after {
	left: 0;
  }
  .form-wizard .wizard-password-eye {
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
  }

  .form-wizard h5{
	  font-size: 16px;
	  font-weight: 600;
	  color: #000;
	  text-transform: uppercase;
	  text-align: center;
	  margin-bottom: 15px;
  }

  .form-wizard h6{
	margin-top: 15px;
	font-size: 14px;
	color: #dc3545;
	text-align: center;
	line-height: 19px;
}

  .registration-box .form-control{
	  padding-left: 10px;
  }
  @keyframes click-radio-wave {
	0% {
	  width: 25px;
	  height: 25px;
	  opacity: 0.35;
	  position: relative;
	}
	100% {
	  width: 60px;
	  height: 60px;
	  margin-left: -15px;
	  margin-top: -15px;
	  opacity: 0.0;
	}
  }
  @media screen and (max-width: 767px) {
	.wizard-content-left {
	  height: auto;
	}
  }

  .registration-box .form-group label{
	  font-weight: bold;
	  color: #000;
  }

  .donate-succ{
	  padding: 0;
  }

.join-confirm h5{
    text-transform: uppercase;
    color: #d13e4c;
    font-size: 16px;
    margin-top: 20px;
}

.join-confirm ul{
    text-align: left;
    padding: 0 0 0 15px;
}

.join-confirm ul li{
    list-style: decimal;
    font-size: 13px;
    color: #000;
    font-weight: 600;
    padding: 5px 0;
}
  
.join-confirm img{
    width: 100px;
}


.donate-input{
    width: 250px;
    margin: 14px auto 15px !important;
	position: relative;
}

.donate-input .form-control{
    box-shadow: none;
    font-size: 50px;
    color: #c82333;
    height: 100px;
    text-align: center;
    border: 2px solid #ccc !important;
	width: 200px;
}

.donate-input .form-control::placeholder{
    font-size: 50px;
    color: #DDDDDD;
}

.card-overflow{
	position: absolute;
	height: 300px;
	background: url(../images/card-bg-layer_expired.png) top center;
	background-size: 100% 100%;
    transform: rotate(15deg);
    width: 100%;
    top: -45px;
    left: 0;
	opacity: .4;
}

.renew-subscription{
	margin-top: 50px;
}
.renew-subscription h1{
	font-size: 16px;
	color: red;
	text-align: center;
	font-weight: 600;
}

.price-tag{
	display: block;
	text-align: right;
	font-size: 20px;
	text-transform: uppercase;
	margin-top: 6px;
	position: absolute;
    right: 5px;
    bottom: 0;
}

.donate-succ h2{
	font-size: 20px;
	color: #000;
}

.sidebar{
	position: fixed;
	top: 0;
	left: -80%;
	width: 80%;
	height: 100vh;
	z-index: 99999999999;
	background: #fff;
	padding: 15px 0;
	transition: all .3s ease-in-out;
}

.sidebar-toggle{
	left: 0 !important;
}

.sidebar ul li{
	display: block;
	padding: 15px 15px;
	border-bottom: 1px solid #ccc;
}

.sidebar ul li a{
	font-size: 18px;
	color: #000;
}

.sidebar ul li a i{
	margin-right: 8px;
	width: 20px;
	color: #D85867;;
}

.sidebar-overlay{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.50);
	z-index: 999;
}

.donate-fail h1{
	color: red;
}


.support-text {
	padding:0 15px;
	margin-top:30px;
	text-align: center;
}
.support-text h1{
	font-size: 18px;
    color: #000;
    font-weight: 600;
    text-align: center;
	margin-bottom:10px
}

.support-text p {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
}

.support-text ul{
	padding: 30px;
	margin-top:50px;
	background:#fff;
	-webkit-box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
	-moz-box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
	box-shadow: 0px 0px 13px 1px rgba(0,0,0,0.20);
}
.support-text ul li{
	margin-bottom: 10px;
	font-size:15px;
	color: #000;
    font-weight: 600;
}

.support-text ul li a{
	color:#DC3545;
}



.payment-adres{
	max-width:300px;
	margin: auto;
	border: 1px solid #ededed;
	padding:10px;
	border-radius: 4px;
}

.payment-adres .table tr td{
	padding:5px;
	font-size:13px;
	border:none;
	vertical-align: middle;
}

.payment-adres .table tr td:nth-child(1){
	color: #000;
	font-weight: 600;
}

.payment-adres-edit{
	text-align: right;
    color: #000;
    max-width: 300px;
    margin: 5px auto 40px;
    font-size: 10px;
}

.payment-adres-edit a{
	font-weight: 600;
    color: #d65470;
    text-decoration: underline;
    display: block;
}

.partecipant-link{
	font-size: 12px;
	font-weight: 500;
	margin-top: 5px;
	color: #000;
}

.partecipant-link a{
	font-weight: 600;
	color: #d65470;
	text-decoration: underline;
}


























