/* add fonts */
@font-face {
    font-display: block;
    font-family: "bebasneue";
    src: url("../fonts/bebasneue.woff") format("woff");
  }
 
  @font-face {
    font-family: 'dyuthi';
    src: url('../fonts/dyuthi.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

  @font-face {
    font-display: block;
    font-family: "gameofsquids";
    src: url("../fonts/gameofsquids.woff") format("woff");
  }

  @font-face {
    font-display: block;
    font-family: "simply";
    src: url("../fonts/monospace.woff") format("woff");
  }

  * {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color:                #13547a;
    --secondary-color:              #80d0c7;
    --link-hover-color:             #13547a;
    --copyright-font-size:          16px;
    --font-weight-medium:           500;
}

.section-padding {
    padding-top: 50px;
    padding-bottom: 15px;
  }

html {
    height: 100%;
}

/*Background color*/
#core {
    background-image:url(../images/background-tour-lite.svg),
    linear-gradient(45deg, rgba(180, 130, 38, 0.534) 22%, rgba(136, 80, 168, 0.801) 50%);
  background-size: cover, cover, cover;
  /*background-position: center, 0% 0%, center;*/
  background-position: center;
  background-repeat: no-repeat, repeat, no-repeat;
  }
#grad1 {
    background-image:
    linear-gradient(45deg, rgba(180, 130, 38, 0.534) 22%, rgba(136, 80, 168, 0.801) 50%), url("../images/pont-avignon-nb.svg");
  background-size: cover, cover, cover;
  /*background-position: center, 0% 0%, center;*/
  background-position: center;
  background-repeat: no-repeat, repeat, no-repeat;
}

#title-h2{
    font-family: gameofsquids,arial,sans-serif;
    font-size: 40px;
}
/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}
.input-text {
    font-family: simply,arial,sans-serif;
    font-size: 16px;
}
/*
.form-control{
    font-family: adorage,arial,sans-serif;
    font-size: 20px;
}
*/
#msform fieldset .form-card {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 0 3% 20px 3%;

    /*stacking fieldsets above each other*/
    position: relative;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform fieldset .form-card {
    text-align: left;
    color: #9E9E9E;
}

#msform input, #msform textarea {
    /*padding: 0px 8px 4px 8px;*/
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    /*font-family: montserrat;*/
    color: #2C3E50;
    font-size: 16px;
    letter-spacing: 1px;
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    font-weight: bold;
    border-bottom: 2px solid skyblue;
    outline-width: 0;
}

/*Blue Buttons*/
#msform .action-button {
    width: 150px;
    background: #80d0c7;
    font-family: bebasneue,arial,sans-serif;
    font-size: 20px;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px skyblue;
}

/* contact button */
#msform .contact-button {
  width: 200px;
  background: rgb(39,53,130);
  font-family: bebasneue,arial,sans-serif;
  font-size: 20px;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}

#msform .contact-button:hover, #msform .contact-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px rgb(39,53,130);
}

/* registration lost button */
#msform .lost-button {
  width: 200px;
  background: rgb(226,31,54);
  font-family: bebasneue,arial,sans-serif;
  font-size: 20px;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}

#msform .lost-button:hover, #msform .lost-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px rgb(226,31,54);
}

/*Previous Buttons*/
#msform .action-button-previous {
    width: 150px;
    background: #616161;
    font-family: bebasneue,arial,sans-serif;
    font-size: 20px;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #616161;
}

/*Dropdown List Exp Date*/
select.list-dt {
    border: none;
    outline: 0;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px 3px 5px;
    margin: 2px;
}

select.list-dt:focus {
    border-bottom: 2px solid skyblue;
}

/*The background card*/
.card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    position: relative;
}

/* phone international */


/*FieldSet headings*/
.fs-title {
    font-size: 25px;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

#progressbar .active {
    color: #000000;
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 20%;
    float: left;
    position: relative;
}

/*Icons in the ProgressBar*/
#progressbar #club:before {
    font-family: FontAwesome;
    /*content: "\f023";*/
   /* content: "\f500"; */
}

#progressbar #personal:before {
    font-family: FontAwesome;
    /*content: "\f007";*/
}

#progressbar #payment:before {
    font-family: FontAwesome;
    /*content: "\f09d";*/
    /*content: "\f236";*/
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    /*content: "\f00c";*/
}

/*ProgressBar before any progress*/
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before, #progressbar li.active:after {
    /*background: skyblue;*/
    background: rgb(226,81,54);
}

/*Imaged Radio Buttons*/
.radio-group {
    position: relative;
    margin-bottom: 25px;
}

.radio {
    display:inline-block;
    width: 204;
    height: 104;
    border-radius: 0;
    background: lightblue;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor:pointer;
    margin: 8px 2px; 
}

.radio:hover {
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.radio.selected {
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
}

/*Fit image in bootstrap div*/
.fit-image{
    width: 100%;
    object-fit: cover;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
  }
  
  a:hover {
    color: var(--link-hover-color);
  }
.site-footer {
    border-bottom: 10px solid var(--secondary-color);
    position: relative;
  }
  
  .site-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 200px 200px;
    border-color: transparent transparent var(--secondary-color) transparent;
    pointer-events: none;
  }
  
  .site-footer-title {
    color: var(--primary-color); 
  }
  
  .site-footer .dropdown-menu {
    padding: 0;
  }
  
  .site-footer .dropdown-item {
    color: var(--p-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-medium);
    padding: 4px 18px;
  }
  
  .site-footer .dropdown-item:hover {
    background-color: transparent;
    color: var(--primary-color);
  }
  
  .site-footer .dropdown-menu li:first-child .dropdown-item {
    padding-top: 10px;
  }
  
  .site-footer .dropdown-menu li:last-child .dropdown-item {
    padding-bottom: 12px;
  }
  
  .site-footer .dropdown-toggle {
    background-color: var(--secondary-color);
    border-color: var(--white-color);
  }
  
  .site-footer .dropdown-toggle:hover {
    background-color: var(--primary-color);
    border-color: transparent;
  }
  
  .site-footer-links {
    padding-left: 0;
  }
  
  .site-footer-link-item {
    display: block;
    list-style: none;
    line-height: normal;
  }
  
  .site-footer-link {
    color: var(--secondary-color);
    font-size: var(--copyright-font-size);
    font-weight: var(--font-weight-medium);
    line-height: normal;
  }
  
  .copyright-text {
    font-size: var(--copyright-font-size);
  }
  #spinner-div {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(215, 201, 218, 0.8);
    z-index: 2;
  }
  #overlay{	
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
  }
  .cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
  }
  .spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
  }
  @keyframes sp-anime {
    100% { 
      transform: rotate(360deg); 
    }
  }
  .is-hide{
    display:none;
  }