@font-face {
    font-family: brushFont;
    src: url(/material/font/BrushedTraveler.ttf);
}

@font-face {
    font-family: BebasFont;
    src: url(/material/font/BebasNeue-Regular.ttf);
}

/*default classes*/
.middle-align{
	margin-top: auto !important;
    margin-bottom: auto !important;
}



.homepage-wrapper {
	background-color: #0e1a38;
	background-image: url(/material/img/web/web2024/FRONT_PAGE_COVER.png);
	background-size: cover;
	background-repeat: no-repeat;
	/* height:100vh; */
  }

  .hero-video {
	background-color: black;
	clip-path: url(#rounded-rectangle);
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
  }

  video {
	object-fit: contain;
  }
   .overlay {
	  background: black;
	  opacity: 0.5;
	  position: absolute;
	  z-index: 1;
	  text-align: center;
	  margin: 0%;
	}
  h2{
	  color:white;
	  text-transform: uppercase;

  }

  .payment-logos-footer{
	width: 100%;
    margin: 10px auto 0;
    text-align: center;
    background: white;
    padding: 10px 0;
}

.logo-list img{
    transition: all 0.3s ease-in-out;
    -webkit-filter: grayscale(100);
    -moz-filter: grayscale(100);
    filter: grayscale(100);
}
.logo-list img:hover {
    filter: none;
    transform: scale(1.2);
    -webkit-filter: none;
    -moz-filter: none;
}

/*pharmamed sekcija - generalni sponzor*/
.pharmamed-sponzor{
	background: linear-gradient(to right, rgba(255,255,255,0) 10%, rgba(255,255,255,0.5) 20%,
      rgba(255,255,255,1) 80%), url(https://avaz.ba/media/2017/10/08/371816/thumbs/873x400.jpg);
	  background-repeat: no-repeat;
	  background-size: cover;
	  padding-top:100px;
	  padding-bottom:300px;
}

/*radio buttons */
input[type="radio"]{
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    margin-bottom: 5px;
    position: relative;
    cursor: pointer;
    outline: 0;
    overflow: hidden;
  }

  input[type="radio"]:after{
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transition: all .1s;
  }

  /* type_1 */
  .type_1{
    border: 2px solid #9c27b0;
  }

  .type_1:after{
    border: 5px solid #9c27b0;
    transform: translate3d(50%, 50%, 0);
  }

  .type_1:checked:after{
    transform: translate3d(-50%, -50%, 0);
  }

  /* type checkbox */
  input[type="checkbox"]{
	appearance: none;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-bottom: 5px;
    position: relative;
    cursor: pointer;
    outline: 0;
    overflow: hidden;
  }

  input[type="checkbox"]:after{
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transition: all .1s;
  }

  .type_checkbox{
	border:2px solid #9c27b0;
  }
  .type_checkbox:after{
    border: 5px solid #9c27b0;
    transform: translate3d(90%, 90%, 0);
  }
  .type_checkbox:checked:after{
    transform: translate3d(-50%, -50%, 0);
  }


/*==== switch toggle =====*/
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}
/*select dropdown */
/* select starting stylings ------------------------------*/
.select {
  font-family:
    'Roboto','Helvetica','Arial',sans-serif;
	position: relative;
	width: 350px;
}

.select-text {
	position: relative;
	font-family: inherit;
	background-color: transparent;
	width: 350px;
	padding: 10px 10px 10px 0;
	font-size: 18px;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid rgba(0,0,0, 0.12);
}

/* Remove focus */
.select-text:focus {
	outline: none;
	border-bottom: 1px solid rgba(0,0,0, 0);
}

	/* Use custom arrow */
.select .select-text {
	appearance: none;
	-webkit-appearance:none
}

.select:after {
	position: absolute;
	top: 18px;
	right: 10px;
	/* Styling the down arrow */
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid rgba(0, 0, 0, 0.12);
	pointer-events: none;
}

.disabled-li-item{
	opacity: 0.5;
}

/* LABEL ======================================= */
.select-label {
	color: rgba(0,0,0, 0.26);
	font-size: 18px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 0;
	top: 10px;
	transition: 0.2s ease all;
}

/* active state */
.select-text:focus ~ .select-label, .select-text:valid ~ .select-label {
	color: #2F80ED;
	top: -20px;
	transition: 0.2s ease all;
	font-size: 14px;
}

/* BOTTOM BARS ================================= */
.select-bar {
	position: relative;
	display: block;
	width: 350px;
}

.select-bar:before, .select-bar:after {
	content: '';
	height: 2px;
	width: 0;
	bottom: 1px;
	position: absolute;
	background: #2F80ED;
	transition: 0.2s ease all;
}

.select-bar:before {
	left: 50%;
}

.select-bar:after {
	right: 50%;
}

/* active state */
.select-text:focus ~ .select-bar:before, .select-text:focus ~ .select-bar:after {
	width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
	position: absolute;
	height: 60%;
	width: 100px;
	top: 25%;
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}

/* dashboard */
#gender-chart{
	min-height: 250px;
  }


/*=============================================================== H O M E P A G E =======================================================*/
.navbar-light .navbar-toggler-icon{
  background-image: url('/material/img/hamburger-tnu.svg');
}
.navbar-light .navbar-toggler{
  color:transparent;
  border-color: transparent;
}
.navbar-fixed-top.scrolled {
	background-color: #fff !important;
	transition: background-color 200ms linear;
  }
button:focus{
  outline:none;
}


.btn-barry{
  background: rgb(215, 50, 238);
/* neo-stroke */
color:white;
font-weight: 500;
border: 0.5px solid rgba(255, 255, 255, 0.4);
box-sizing: border-box;
box-shadow: 2px 2px 6px rgba(0, 21, 74, 0.2);
clip-path: polygon(0% 0%, 114% -10%, 88% 100%, -15% 100%);
border:none;
border-radius: 0px;
padding:10px 30px;
text-transform: uppercase;
}
.btn-register{
	background: rgb(215, 50, 238);
/* neo-stroke */
color:white;
font-weight: 500;
border: 0.5px solid rgba(255, 255, 255, 0.4);
box-sizing: border-box;
box-shadow: 2px 2px 6px rgba(0, 21, 74, 0.2);
clip-path: polygon(14% 0%, 114% -10%, 88% 100%, -15% 100%);
border:none;
border-radius: 0px;
padding:10px 30px;
text-transform: uppercase;

}
/*
.btn-barry:hover,
.btn-register:hover{
  background-color: rgba(216, 50, 238, 0.731);
  color:white;
}
*/
.fineBlue, .bg-fineBlue{
	background-color: #109fdb;
}
.bg-pink{
	background: rgb(215, 50, 238);
}
.btn-register.fineBlue:hover,
.btn.fineBlue:hover{
	background-color: #109edb91;
}
.border-bottom{
  border-bottom:1px solid #FAFFFD;
   max-width:70%;
    padding-top:10px;
}
.linear{
	background:linear-gradient(90.37deg, #00154A 0.38%, #A129B1 99.75%);
	background:linear-gradient(to right, #AC42BF, #19CACA);
}
.linear-plavi{
	background: linear-gradient(270deg, #109FDB 0.01%, #00154A 83.13%);
box-shadow: 2px 2px 6px rgba(0, 21, 74, 0.2);
}
.linear-zeleni{
	background: linear-gradient(270deg, #356B41 30.44%, #00154A 88.26%);
box-shadow: 2px 2px 6px rgba(0, 21, 74, 0.2);
}
.linear-crveni{
	background: linear-gradient(90.37deg, #4A000D 0.38%, #B12929 99.75%);
box-shadow: 2px 2px 6px rgba(0, 21, 74, 0.2);
}

.btn-link{
	color:rgb(215, 50, 238);
	font-weight: 600;
}
a.social-icons{
	color:rgb(215, 50, 238);
}
a.social-icons:hover{
	color:rgba(216, 50, 238, 0.731);
}
.bold{
	font-weight: 600;
}
/* ===================Countdown  circles  style============== */

.countdown-wrapper {
	display: flex;
	align-items: center;
/*	justify-content: center;*/
	flex-wrap: wrap;
}

.countdown-item {
	color: rgb(173, 145, 239); /*Boja Brojeva*/
	font-size: 40px;
	display: flex;
	align-items: center;
  	justify-content: center;
	flex-direction: column;
    line-height: 30px;
	margin: 10px;
    padding-top: 10px;
	position: relative;
	width: 100px;
	height: 100px;
}

.countdown-item span {
	color: rgb(208, 206, 206); /*Boja labela dani,sati, minuti... */
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.countdown-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 100px;
}

/**** checkbox custom ***/

/* Hide the browser's default checkbox */
.checkBoxContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }

  /* Create a custom checkbox */
  .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius:5px;
	border:1px solid green;
  }

  label.checkBoxContainer {
    margin-left: 15px;
}


  /* On mouse-over, add a grey background color */
  .checkBoxContainer:hover input ~ .checkmark {
	background-color: #ccc;
	cursor:pointer;
  }


  /* When the checkbox is checked, add a blue background */
  .checkBoxContainer input:checked ~ .checkmark {
	background-color: #097121;
  }

  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }

  /* Show the checkmark when checked */
  .checkBoxContainer input:checked ~ .checkmark:after {
	display: block;
  }

  /* Style the checkmark/indicator */
  .checkBoxContainer .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
  }

ol{
	color:white;
}
  /*sekcija paketi */
  .white-bg-section{
	background-image:url('/material/img/tnu-white-bg.webp');
	padding:50px 0px;
	background-repeat:no-repeat;
	background-size:cover;
	position:relative;
  }
  .white-bg-section-gallery{
	background-image:url('/material/img/tnu-white-bg.webp');
	padding:50px 0px;
	background-repeat:repeat;
	position:relative;
  }
  .white-bg2-section{
	background-image:url('/material/img/tnu-white-bg2.webp');
	padding:50px 0px;
	background-repeat:no-repeat;
	background-size:cover;
	position: relative;
  }

  .purple-bg-section{
	background-image:url('/material/img/paketi_bg.webp');
	padding:50px 0px;
	background-repeat:no-repeat;
	background-size:cover;
	position: relative;
  }

  #paketi-section{
	background-image:url('/material/img/paketi_bg.webp');
	padding:50px 0px;
	background-repeat:no-repeat;
	background-size:cover;
	position: relative;
  }
  #webshop-section{
	background-image:url('/material/img/paketi_bg.webp');
	padding:50px 0px;
	background-repeat:no-repeat;
	background-size:cover;
	position: relative;
  }
  ul.paketi-lista{
	  color:white;
	  padding-top:10px;
	  font-weight: 300;
  }
  .opis-paketa{
	  margin:0 auto;
	  max-width: 240px;
  }
  .shadow-logo{
	background-image:url('/material/img/web/shadow_logo1.png');
	background-repeat: no-repeat;
	position: absolute;
	opacity: 0.2;
	bottom:0%;
	right:10%;
	min-width: 578px;
	min-height: 265px;
  }

  #zeroTolerance{
	  background-image:url('/material/img/web/nulta-sekcija.png');
	  padding:50px 0px;
	  background-repeat:no-repeat;
	  background-size:cover;
	  position: relative;
	  min-height: 600px;
	  background-position: center;
	}
	/*Skola trcanja sekcija */
  #skolaTrcanja-section{
	background-image:url('/material/img/web/skola-trcanja-background.png') ;
	background-position-y: 55%;
	padding:50px 0px;
	background-repeat:no-repeat;
	background-size:cover;
	position: relative;

  }

  .card.regForma{
	box-shadow: 0 0 10px #70c7dd, 0 0 20px #70c7dd, 0 0 20px #70c7dd5d inset;
  }

  .card-header .btn{
	color:white;
  }

  .accordion .card{
	background-color:black;
  }
  .accordion .card .card-body{
	color:white;
  }
  #djecijaUtrka-section{
	background-image:url('/material/img/web/web2024/hd_bg.jpg');
	padding:50px 0px;
	background-repeat:no-repeat;
	background-size:cover;
	position: relative;
	background-position: center ;
	min-height: 100vh;
  }

  /*contact forma */
  #contact-sekcija{
	  padding-top:20px;
	  padding-bottom: 20px;
  }
  .error{
	  color:red;
  }
  label.error {
	color: #dc3545;
	font-size: 14px;
}

/*side icons  */

.icons{
	position:fixed;
	top:30%;
	right:0px;
	width:200px;
	display: flex;
	flex-direction: column;
	text-align: left;
	z-index:99;

}
.icons a{
	text-decoration: none;
	text-transform: uppercase;
	padding: 10px;
	font-size: 18px;
	margin:2px;
	border-radius: 50px 0px 0px 50px;
	transform: translate(130px, 0px);
	transition:all 0.5s;
}
.icons a:hover{
	transform: translate(20px, 0px);
	text-decoration: none;
	color: white;
}
.icons a i{
	margin-right: 20px;
	background-color: white;
	height: 40px;
	width:40px;
	color:black;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;

}
.icons a i.fa-image{
	color:#109fdb;
}
.icons a i.fa-person-running{
	color:rgb(215, 50, 238);
}
.icons a i.fa-medal{
	color:#00154A;
}
.gallery-icon{
	background-color: #109fdb;
	color:white;
}
.ucesnici-icon{
	background-color: rgb(215, 50, 238);
	color:white;
}
.pobjednici-icon{
	background-color: #00154A;
	color:white;
}
/*kraj za side Icons/


  /*============video=============== */
  .section-header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	background: #2B3044;
  }

  .section-header h1 {
	  font: 400 32px "Montserrat", sans-serif;
	  text-transform: uppercase;
	  color: #fff;
	}
	iframe {
	  width: 100%;
	  height: 600px;
	}

  .video-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
	grid-gap: 15px;
	max-width: 1100px;
	padding: 15px;
	margin: 0 auto;
	box-sizing: border-box;
  }

  .video-gallery .gallery-item {
	position: relative;
	width: 100%;
	height: 300px;
	background: #000;
	cursor: pointer;
	overflow: hidden;
  }

  .video-gallery .gallery-item img {
	position: relative;
	display: block;
	width: 115%;
	height: 300px;
	object-fit: cover;
	opacity: .5;
	/*transition: opacity .35s, transform .35s;*/
	transition: all 350ms ease-in-out;
	transform: translate3d(-23px, 0, 0);
	/*backface-visibility: hidden;*/
  }

  .north-cascades-img {
	object-position: 50% 30%;
  }

  .video-gallery .gallery-item .gallery-item-caption {
	padding: 32px;
	font-size: 1em;
	color: #fff;
	text-transform: uppercase;
  }

  .video-gallery .gallery-item .gallery-item-caption,
  .video-gallery .gallery-item .gallery-item-caption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }

  .video-gallery .gallery-item h2 {
	font-weight: 300;
	overflow: hidden;
	padding: 12px 0;
  }

  .video-gallery .gallery-item h2,
  .video-gallery .gallery-item p {
	position: relative;
	margin: 0;
	z-index: 1;
	pointer-events: none;
  }

  .video-gallery .gallery-item p {
	letter-spacing: 1px;
	font-size: 12px;
	padding: 12px 0;
	opacity: 0;
	transition: opacity 0.35s, transform 0.35s;
	transform: translate3d(10%, 0, 0);
  }

  .video-gallery .gallery-item:hover img {
	opacity: 0.3;
	transform: translate3d(0, 0, 0);
  }

  .video-gallery .gallery-item .gallery-item-caption {
	text-align: left;
  }

  .video-gallery .gallery-item h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 15%;
	height: 1px;
	background: #fff;
	transition: transform 0.3s;
	transform: translate3d(-100%, 0, 0);
  }

  .video-gallery .gallery-item:hover h2::after {
	transform: translate3d(0, 0, 0);
  }

  .video-gallery .gallery-item:hover p {
	opacity: 1;
	transform: translate3d(0, 0, 0);
  }


  @media screen and (max-width: 784px) {
	.pt-desktop{
		padding-top:10px;
	}

	.recordImg{
		max-height: 100px;
	}
	.neon-text {
		font-family: 'BebasFont', 'Poppins';
		font-size: 35px !important;
        text-align: center;
        margin-bottom: 2rem;
		}
  }

  .tnu_custom {
    color: #d732ee;
    font-size: 30px;
    margin-right: 10px;
    padding-top: 0px;
}

.card-header .btn{
	color: #ffffff;
}

.mt-3{
	margin-top: 25px;
}

  /* faq  sekcija*/



/*=======date time picker */
.ui-datepicker-calendar {
    display: none;
    }
/* prijava za volontere*/
.prijava{
	background-image: url('/material/img/tnu-white-bg.webp');
	background-size: cover;
	background-repeat: no-repeat;
	padding: 40px 0px;
}

.medijski-sekcija{
	background-image: url('https://stage.travniknocnautrka.ba/material/img/web/medijski-sekcija.png');
	background-size: cover;
	background-repeat: no-repeat;
	padding: 40px 0px;
}
.pharmamed-sekcija{
	background-image: url('https://stage.travniknocnautrka.ba/material/img/web/pharmamed-sekcija.png');
	background-size: cover;
	background-repeat: no-repeat;
	padding: 40px 0px;
	min-height:70vh;
}

form{
	padding:20px;
	border-radius: 0px 0px 10px 10px;
	background:transparent;
}
.hero-volonteri{
	background-image: url('/material/img/djecijaUtrka-bg.webp');
	background-size: cover;
	background-repeat: no-repeat;
	padding: 5rem 0;

}
#volontiraj-section{
	background-image:url('/material/img/web/web2024/volonteri_bg.jpg');
	padding:50px 0px;
	background-repeat:no-repeat;
	background-size:cover;
	background-repeat: no-repeat;
	position: relative;
	background-position: center ;
	min-height: 80vh;
}
img.img-fluid.recordImg:hover {
    opacity: 0.8;
}

  /* footer */
  .footer-traka{
	background-color: #000;
/*	background-image: url('/material/img/web/web2024/footer2024.png');
	height: 400px;
	background-size: cover;
	*/

  }
  footer{
	  padding-top:10px;
	  padding-bottom: 10px;
	  color:white;
  }
  .social-icons{
	  padding-left:7px;
	  padding-right: 7px;
  }
 .white,
 .footer-link{
	color:white;
}
.footer-link:hover{
	color:rgb(215, 50, 238);
}

/*======== Galerija ========= */
.nav-tabs .nav-link{
	color:white;
	border: 1px solid #70c7dd;
}
.nav-tabs .nav-link.active {
    background-color: black;
    color: white;
	box-shadow: 0 0 10px #70c7dd, 0 0 20px #70c7dd, 0 0 20px #70c7dd5d inset;
}

#loading-spinner{
	margin-left: auto;
     position: fixed;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    text-align: center;
    z-index: 9999;
    bottom: 0;
    color:rgb(215, 50, 238);
    display:none;
}



/*testiranje za button blink */
.btn {
	position: relative;
	color: #fff;
	cursor: pointer;
	overflow: hidden;
  }
  .btn:hover{
	color: #fff;
	opacity: 0.95;
  }

  .btn::before,
  .btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transition: opacity 300ms 100ms ease-in-out, transform 300ms 100ms ease-in-out;

  }

  .btn::after {
	transform: translateX(-110%) skewX(-20deg);
	opacity: 0.2;

  }

  .btn::before {
	transform: translateX(-100%) scaleX(0.5) skewX(-20deg);
	opacity: 0.1;
  }

  .btn:hover::after,
  .btn:hover::before {
	opacity: 0.3;
	transform: translateX(100%);
  }
  .btn:disabled{
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* neon border */
  .neon-border {
	position: relative;
	overflow: hidden;
  }

  .neon-border::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #AC42BF, #19CACA);
	filter: brightness(200%) saturate(150%);
  }

  .black-bg{
	background-color: #000;
	padding:50px 0px;
	position: relative;
	overflow: hidden;
  }
  .glass-bg{

	background: rgba(255,255,255,0.5);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	opacity: 0.97;

  }

  .neon-quadrat{
	background-image:url('/material/img/web/neon-quadrat.png');
	background-repeat: no-repeat;
	position: absolute;
	opacity: 1;
	top:0%;
	right:0%;
	transform: rotate(30deg);
	min-width: 578px;
	min-height: 265px;
  }

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;600;700&display=swap');

  .neon-text {
font-family: 'BebasFont', 'Poppins';
text-align: center;
font-size: 75px;
color: #fff;
text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff, 0 0 7px #ff00de, 0 0 15px #ff00de, 0 0 25px #ff00de, 0 0 40px #ff00dd67, 0 0 45px #ff00dd7b;
}
.neon-text {
	font-family: 'BebasFont', 'Poppins';
	font-size: 75px;
    text-align: center;
	color: #fff;
	text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff, 0 0 7px #ff00de, 0 0 15px #ff00de, 0 0 25px #ff00de, 0 0 40px #ff00dd67, 0 0 45px #ff00dd7b;
	}
.btn-outline{
	border:1px solid white;
	background:transparent;
	color:white;
	padding:15px 20px;
	font-size: 20px;
	font-weight: 600;
  }


  a.btn-outline:hover{
	color:white;
	text-decoration: none;
  }
.cool-text{
    color:#ff9100;
}
.couple-text{
    color:#f7e94d;
}
.family-text{
    color:#ae4a95;
}
.basic-text{
    color:#70c7dd;
}
  .btn-orange{
	border-color: #ff9100;
	text-transform:uppercase !important;
  }
  .btn-orange:hover{
	box-shadow: 0 0 10px #ff9100, 0 0 20px #ff9100, 0 0 20px #ff91005d inset;

  }

  .btn-green{
	border-color: #0FFF50;
	text-transform:uppercase !important;
  }
  .btn-green:hover,
  .btn-cool:hover{
	box-shadow: 0 0 10px #0FFF50, 0 0 20px #0FFF50, 0 0 20px #0FFF505d inset;

  }

  .btn-basic{
	border-color: #70c7dd;
	text-transform:uppercase !important;
  }
  .btn-basic:hover,
  .btn-basic:active{
	box-shadow: 0 0 10px #70c7dd, 0 0 20px #70c7dd, 0 0 20px #70c7dd5d inset;
  }
  .btn-cool{
    border-color: #0FFF50;
    text-transform:uppercase !important;
  }
  .btn-family{
	border-color: #ae4a95;
	text-transform:uppercase !important;
  }
  .btn-family:hover,
  .btn-family:active{
	box-shadow: 0 0 10px #ae4a95, 0 0 20px #ae4a95, 0 0 20px #ae4a955d inset;
  }
  .btn-couple{
	border-color:#f7e94d;
	text-transform:uppercase !important;
  }
  .btn-couple:hover,
  .btn-couplev.active{
	box-shadow: 0 0 10px #f7e94d, 0 0 20px #f7e94d, 0 0 20px #f7e94d5d inset;
  }

  .pt-desktop{
	padding-top:100px;
  }
  #form-confirm-payment{
	padding-top:0px;
	padding-bottom:0px;
  }
