@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gochi+Hand&family=Roboto&family=Titan+One&display=swap");
/* Color Theme Swatches in RGBA */
/* _card.scss:5 */
@import url("https://fonts.googleapis.com/css?family=Abril+Fatface|Archivo+Black|Catamaran:900|Frank+Ruhl+Libre|Karla:300+ 900|Lato|Lora|Merriweather|Montserrat|Nunito+Sans|PT+Sans:300+700|PT+Serif|Playfair+Display|Roboto:300|Source+Sans+Pro:100+300|Source+Serif+Pro");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");

body {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 64em) {
    body {
        font-size: 90%;
    }
}

@media screen and (max-width: 50em) {
    body {
        font-size: 75%;
    }
}

@media screen and (max-width: 30em) {
    body {
        font-size: 60%;
    }
}

h1, h2, h3, h4 {
    font-family: "Titan One", cursive;
}

@media screen and (max-width: 64em) {
    h1 {
        font-size: 2.5em;
    }
}

@media screen and (max-width: 50em) {
    h1 {
        font-size: 2em;
    }
}

@media screen and (max-width: 30em) {
    h1 {
        font-size: 1.5em;
    }
}

sup {
    font-size: smaller;
}

.typewriter {
    font-family: "Gochi Hand", cursive;
}

/*
-----------------
 Paramétres généraux
-----------------
 */
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: auto;
    margin: 0;
    padding: 0;
    text-align: left;
    background: #fcfcff;
    background: linear-gradient(90deg, #fcfcff 0%, #dddde9 48%, #f5f9fa 100%);
}

img,
table,
td,
blockquote,
code,
pre,
textarea,
input,
iframe,
object,
embed,
video {
    max-width: 100%;
}

.dessus {
    background: radial-gradient(#1c3f8b 15%, transparent 16%) 0 0, radial-gradient(#1c3f8b 15%, transparent 16%) 8px 8px, radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 0 1px, radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 8px 9px;
    background-color: #1c3f8b;
    background-size: 16px 16px;
    color: white;
}

.rond {
    float: left;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-right: 15px;
    shape-outside: circle(50% at center);
    shape-margin: 15px;
}

hr {
    border: 0;
    height: 1px;
    width: 10%;
    position: relative;
    margin: 30px auto;
}

hr.center-ball {
    background: #39D1B4;
}

hr.center-ball:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #39D1B4;
    display: inline-block;
    border: 2px solid #39D1B4;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: 50%;
    margin: 0 0 0 -3px;
}

hr.center-diamond {
    background: #39D1B4;
}

hr.center-diamond:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #39D1B4;
    display: inline-block;
    border: 2px solid #39D1B4;
    position: absolute;
    top: -5px;
    left: 50%;
    margin: 0 0 0 -3px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Opera, Chrome, and Safari */
}

hr.center-square {
    background: #39D1B4;
}

hr.center-square:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #39D1B4;
    display: inline-block;
    border: 2px solid #39D1B4;
    position: absolute;
    top: -5px;
    left: 50%;
    margin: 0 0 0 -3px;
}

hr.center-star {
    background: #39D1B4;
}

hr.center-star:before {
    content: "★";
    color: #39D1B4;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 50%;
    margin: 0 0 0 -3px;
    font-size: 15px;
    line-height: 0;
    text-shadow: 0 0 3px rgba(13, 13, 13, 0.9);
}

.scroll-to-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    color: #39D1B4;
    background: rgba(0, 9, 45, 0.9);
    line-height: 46px;
    z-index: 999;
}

.scroll-to-top:focus, .scroll-to-top :hover {
    color: #f26d3c;
}

.blink_me {
    animation: blinker 4s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.scroll-to-top:hover {
    background: #676672;
}

.scroll-to-top i {
    font-weight: 800;
    content: "\25B2";
}

blockquote {
    display: block;
    background: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
    padding: 15px 20px 15px 45px;
    margin: 0 0 20px;
    position: relative;
    /*Font*/
    font-family: "Gochi Hand", cursive;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #373a3c;
    /*Box Shadow - (Optional)*/
    -moz-box-shadow: 2px 2px 15px #ccc;
    -webkit-box-shadow: 2px 2px 15px #ccc;
    box-shadow: 2px 2px 15px #ccc;
    /*Borders - (Optional)*/
    border-left-style: solid;
    border-left-width: 15px;
    border-right-style: solid;
    border-right-width: 2px;
    border-color: #f0ad4e;
}

blockquote::before {
    content: "\201C";
    /*Unicode for Left Double Quote*/
    /*Font*/
    font-family: Georgia, serif;
    font-size: 60px;
    font-weight: bold;
    color: #676672;
    /*Positioning*/
    position: absolute;
    left: 10px;
    top: 5px;
}

blockquote::after {
    /*Reset to make sure*/
    content: "\201D";
    font-family: Georgia, serif;
    font-size: 60px;
    font-weight: bold;
    color: #999;
    float: right;
}

blockquote a {
    text-decoration: none;
    background: #eee;
    cursor: pointer;
    padding: 0 3px;
    color: #c76c0c;
}

blockquote a:hover {
    color: #666;
}

blockquote em {
    font-style: italic;
}

/*Default Color Palette*/
blockquote.default {
    border-left-color: #656d77;
    border-right-color: #434a53;
}

.pesp {
    background: #676672;
}

.clignote {
    font-weight: bold;
    text-shadow: 0 1px 0 white;
    border-radius: 3px;
    padding: 5px 10px;
    border: 1px solid #DDD;
    box-shadow: 0px 0px 10px #4183C4;
}

.border {
    background: #f9cb4d;
}

.indentation {
    text-indent: 50px;
}

.bleu {
    color: #1c3f8b;
}

/* ---- button ---- */
* {
    box-sizing: border-box;
}

.accordion-header {
    color: #2b2ece;
    font-size: 8px;
}

.accordion-button {
    background-color: #f2F2F2;
    box-shadow: none;
    border: none;
    padding: 20px 50px;
    margin: 4px 0;
}

.accordion-button:not(.collapsed) {
    border-bottom: 4px solid var(--bs-primary);
    color: var(--bs-primary);
    font-weight: bold;
    background-color: #f2F2F2;
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("https://nsm09.casimages.com/img/2021/06/17//21061710471725998217466601.png");
    transform: rotate(-180deg);
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("https://nsm09.casimages.com/img/2021/06/17//21061710471725998217466600.png");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;

}

.button {
    display: inline-block;
    padding: 3px 6px;
    margin-bottom: 10px;
    background: #EEE;
    border: none;
    border-radius: 7px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    color: #222;
    font-family: "PT Serif", serif;
    font-size: 12px;
    text-shadow: 0 1px #FFFFFF;
    cursor: pointer;
}

.button:hover {
    background-color: #8CF;
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
    color: #222;
}

.button:active, .button .is-checked {
    background-color: #28F;
}

.button .is-checked {
    color: white;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.8);
}

.button:active {
    box-shadow: inset 0 1px 10px rgba(0, 0, 0, 0.8);
}

/* ---- button-group ---- */
.button-group:after {
    content: '';
    display: block;
    clear: both;
}

.button-group .button {
    float: left;
    border-radius: 0;
    margin-left: 0;
    margin-right: 1px;
}

.button-group .button:first-child {
    border-radius: 0.5em 0 0 0.5em;
}

.button-group .button:last-child {
    border-radius: 0 0.5em 0.5em 0;
}

.brand {
    background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#045FB4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    padding: 30px 0 10px;
    text-align: center;
    font-size: 3rem;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: .015em;
    text-shadow: 0 0 0 #4e600a, 0.0025em 0.0025em 0 #4e600a, 0.005em 0.005em 0 #4e600a, 0.0075em 0.0075em 0 #4e600a, 0.01em 0.01em 0 #4e600a, 0.0125em 0.0125em 0 #4e600a, 0.015em 0.015em 0 #4e600a, 0.0175em 0.0175em 0 #4e600a, 0.02em 0.02em 0 #4e600a, 0.0225em 0.0225em 0 #4e600a, 0.025em 0.025em 0 #4e600a, 0.0275em 0.0275em 0 #4e600a, 0.03em 0.03em 0 #4e600a, 0.0325em 0.0325em 0 #4e600a, 0.035em 0.035em 0 #4e600a, 0.0375em 0.0375em 0 #4e600a, 0.04em 0.04em 0 #4e600a, 0.0425em 0.0425em 0 #4e600a, 0.045em 0.045em 0 #4e600a, 0.0475em 0.0475em 0 #4e600a, 0.05em 0.05em 0 #4e600a, 0.0525em 0.0525em 0 #4e600a, 0.055em 0.055em 0 #4e600a, 0.0575em 0.0575em 0 #4e600a, 0.06em 0.06em 0 #4e600a, 0.0625em 0.0625em 0 #4e600a, 0.065em 0.065em 0 #4e600a, 0.0675em 0.0675em 0 #4e600a, 0.07em 0.07em 0 #4e600a, 0.0725em 0.0725em 0 #4e600a, 0.075em 0.075em 0 #4e600a, 0.0775em 0.0775em 0 #4e600a, 0.08em 0.08em 0 #4e600a, 0.0825em 0.0825em 0 #4e600a, 0.085em 0.085em 0 #4e600a, 0.0875em 0.0875em 0 #4e600a, 0.09em 0.09em 0 #4e600a, 0.0925em 0.0925em 0 #4e600a, 0.095em 0.095em 0 #4e600a, 0.0975em 0.0975em 0 #4e600a, 0.1em 0.1em 0 #4e600a;
    font-family: "Archivo Black", sans-serif;
    line-height: normal;
}

.lettrine {
    float: left;
    font-size: 1.25em;
    color: rgba(255, 250, 240, 0.99);
    background: linear-gradient(90deg, rgba(0, 0, 205, 0.9), rgba(28, 63, 139, 0.5));
    border: 2px ridge rgba(0, 0, 0, 0.95);
    border-radius: 5px;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -5px;
}

.lettrine:hover {
    background: linear-gradient(90deg, rgba(28, 63, 139, 0.5), rgba(0, 0, 205, 0.9));
    border: 2px ridge rgba(146, 187, 113, 0.95);
    transition: border 0.2s, background 0.3s 0.2s;
}

.card-footer {
    background: radial-gradient(green 35%, transparent 26%) 0 0, radial-gradient(green 35%, transparent 26%) 4px 4px, radial-gradient(rgba(0, 128, 0, 0.1) 15%, transparent 20%) 0 1px, radial-gradient(rgba(0, 128, 0, 0.1) 15%, transparent 20%) 8px 9px;
    background-color: rgba(25, 64, 16, 0.84);
    background-size: 6px 6px;
}

.basque {
    background-image: url("https://bidasoa-etorkinekin.org/img/flags/Flag_basque.png");
    background-position: center;
    background-repeat: no-repeat;
    width: 65px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.france {
    background-image: url("https://bidasoa-etorkinekin.org/img/flags/Flag_france.png");
    background-position: center;
    background-repeat: no-repeat;
    width: 65px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.shapeindex {
    width: 20em;
    height: 20em;
    float: left;
    margin: 0.25em 2em 1em 0;
}

@supports (border-radius: 25em) and (shape-outside: circle()) {
    .shapeindex {
        shape-outside: circle(50%);
        border-radius: 25em;
    }
}

.shape {
    width: 20em;
    height: 20em;
    float: left;
    margin: 0.25em 2em 1em 0;
}

@supports (border-radius: 25em) and (shape-outside: circle()) {
    .shape {
        shape-outside: circle(50%);
        border-radius: 25em;
    }
}

.underline {
    display: inline-block;
    position: relative;
    padding-bottom: 0.25rem;
    margin: 0;
}

.underline::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1rem;
    background: currentColor;
    clip-path: polygon(0 0, calc(50% - 0.75rem) 0, 50% calc(100% - 3px), calc(50% + 0.75rem) 0, 100% 0, 100% 2px, calc(50% + 0.75rem + 1px) 2px, 50% 100%, calc(50% - 0.75rem - 1px) 2px, 0 2px);
}

.tooltip {
    position: relative;
    border-bottom: 3px dashed #0b1284;
}

.tooltip:before {
    content: attr(data-text); /* here's the magic */
    position: absolute;

    /* vertically center */
    top: 50%;
    transform: translateY(-50%);

    /* move to right */
    left: 100%;
    margin-left: 15px; /* and add a small left margin */

    /* basic styles */
    width: 200px;
    padding: 10px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    text-align: center;

    display: none; /* hide by default */
}

.tooltip:hover:before {
    display: block;
}

.tooltip:after {
    content: "";
    position: absolute;

    /* position tooltip correctly */
    left: 100%;
    margin-left: -5px;

    /* vertically center */
    top: 50%;
    transform: translateY(-50%);

    /* the arrow */
    border: 10px solid #000;
    border-color: transparent black transparent transparent;

    display: none;
}

.tooltip:hover:before, .tooltip:hover:after {
    display: block;
}

.tooltip:before {
    /* other styles */

    /*  display:none; */

    opacity: 0;
    transition: .3s opacity;
}

.tooltip:hover:before {
    opacity: 1;
}

.tooltip:after {
    opacity: 0;
    transition: .3s;
}

.tooltip:hover:after {
    opacity: 1;
}

@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }

    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
    transform: translateX(0);
}

#Monadhesion {
    width: 50%;
    padding: 50px 0;
    text-align: center;
    background-color: blue;
    color: #f5f7fa;
    margin-top: 20px;
}

#Monsoutien {
    width: 50%;
    padding: 50px 0;
    text-align: center;
    background-color: red;
    color: #f5f7fa;
    margin-top: 20px;
}

#Maquestion {
    width: 50%;
    padding: 50px 0;
    text-align: center;
    background-color: yellow;
    color: black;
    margin-top: 20px;
}

.grid {
    border: 1px solid #333;
    background: linear-gradient(90deg, rgba(77, 95, 10, 0.4) 70%, rgba(174, 126, 62, 0.2) 100%);
}

/* clear fix */
.grid:after {
    content: '';
    display: block;
    clear: both;
}

/* ---- .element-item ---- */
.element-item {
    position: relative;
    float: left;
}

.modal-header {
    background: linear-gradient(90deg, #fcfcff 0%, #dddde9 48%, #f5f9fa 100%);
    border-bottom: #1c3f8b;
    color: #cac8c6;
}

.modal-header h5 {
    text-shadow: 2px 2px 2px #F8F8F8;
}

.modal-footer {
    background-image: linear-gradient(90deg, rgba(165, 210, 255, 0.3) 50%, transparent 50%), linear-gradient(rgba(165, 210, 255, 0.3) 50%, transparent 50%);
    background-color: #cac8c6;
    background-size: 40px 40px;
    color: #266af2;
    font-weight: bolder;
    border-top: double 4px #266af2;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
    .dropdown-menu li {
        position: relative;
    }

    .dropdown-menu .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: -7px;
    }

    .dropdown-menu .submenu-left {
        right: 100%;
        left: auto;
    }

    .dropdown-menu > li:hover {
        background-color: #f1f1f1;
    }

    .dropdown-menu > li:hover > .submenu {
        display: block;
    }
}

.nav-item {
    font-weight: bolder;
    text-shadow: 1px 1px 1px rgba(240, 230, 140, 0.85);
}

.nav-item:hover {
    background: -moz-linear-gradient(top, rgba(240, 230, 140, 0.5) 0%, rgba(72, 61, 139, 0.5) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(240, 230, 140, 0.5) 0%, rgba(72, 61, 139, 0.5) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(240, 230, 140, 0.5) 0%, rgba(72, 61, 139, 0.5) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80f0e68c', endColorstr='#80483d8b', GradientType=0);
    /* IE6-9 */
}

/* ============ desktop view .end// ============ */
/* ============ small devices ============ */
@media (max-width: 991px) {
    .dropdown-menu .dropdown-menu {
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        margin-bottom: .5rem;
    }
}

/* ============ small devices .end// ============ */
/**
* retour haut écran
*/
a#cRetour {
    border-radius: 50%;
    padding: 10px;
    font-size: 30px;
    text-align: center;
    color: #98fb98;
    background: rgba(116, 128, 67, 0.5);
    position: fixed;
    right: 40px;
    opacity: 1;
    z-index: 99999;
    transition: all ease-in 0.2s;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    text-decoration: none;
}

a#cRetour:before {
    content: "\25b2";
}

a#cRetour:hover {
    background: rgba(143, 188, 143, 0.7);
    transition: all ease-in 0.2s;
}

a#cRetour.cInvisible {
    bottom: -35px;
    opacity: 0;
    transition: all ease-in 0.5s;
}

a#cRetour.cVisible {
    bottom: 20px;
    opacity: 1;
}

#countdown {
    padding-top: 3%;
    padding-bottom: 3%;
    margin-top: 10%;
    background: #f9c667;
    /* Old browsers */
    background: -moz-linear-gradient(top, #f9c667 0%, #f79621 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #f9c667 0%, #f79621 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #f9c667 0%, #f79621 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9c667', endColorstr='#f79621', GradientType=0);
    /* IE6-9 */
    width: 100%;
}

#countdown h3 {
    color: #FFF;
    text-transform: uppercase;
    text-shadow: 2px 2px 7px rgba(25, 64, 16, 0.84);
}

.compterebour {
    text-align: center;
    width: 70%;
    background: #000000;
    color: #FFFFFF;
    font-size: 25px;
    padding: 20%;
    margin-top: 10px;
    border-radius: 50%;
    margin-bottom: 10px;
    display: inline-block;
}

#wrap {
    width: 1100px;
    margin: 0 auto;
}

#external-events {
    float: left;
    width: 150px;
    padding: 0 10px;
    text-align: left;
}

#external-events h4 {
    font-size: 16px;
    margin-top: 0;
    padding-top: 1em;
}

.external-event {
    /* try to mimick the look of a real event */
    margin: 10px 0;
    padding: 2px 4px;
    background: #3366CC;
    color: #fff;
    font-size: .85em;
    cursor: pointer;
}

#external-events p {
    margin: 1.5em 0;
    font-size: 11px;
    color: #666;
}

#external-events p input {
    margin: 0;
    vertical-align: middle;
}

#calendar {
    /*    float: right; */
    margin: 0 auto;
    width: 900px;
    background-color: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 1px 2px #C3C3C3;
    -webkit-box-shadow: 0px 0px 21px 2px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 0px 21px 2px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 0px 21px 2px rgba(0, 0, 0, 0.18);
}

/*!
 * FullCalendar v1.6.4 Stylesheet
 * Docs & License: http://arshaw.com/fullcalendar/
 * (c) 2013 Adam Shaw
 */
td.fc-day {
    background: #FFF !important;
    font-family: 'Roboto', sans-serif;
}

td.fc-today {
    background: #FFF !important;
    position: relative;
}

.fc-first th {
    font-family: 'Roboto', sans-serif;
    background: #9675ce !important;
    color: #FFF;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.fc-event-inner {
    font-family: 'Roboto', sans-serif;
    background: #03a9f3 !important;
    color: #FFF !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    padding: 5px 0px !important;
}

.fc {
    direction: ltr;
    text-align: left;
}

.fc table {
    border-collapse: collapse;
    border-spacing: 0;
}

html .fc,
.fc table {
    font-size: 1em;
    font-family: "Helvetica Neue", Helvetica;
}

.fc td,
.fc th {
    padding: 0;
    vertical-align: top;
}

/* Header
------------------------------------------------------------------------*/
.fc-header td {
    white-space: nowrap;
    padding: 15px 10px 0px;
}

.fc-header-left {
    width: 25%;
    text-align: left;
}

.fc-header-center {
    text-align: center;
}

.fc-header-right {
    width: 25%;
    text-align: right;
}

.fc-header-title {
    display: inline-block;
    vertical-align: top;
    margin-top: -5px;
}

.fc-header-title h2 {
    margin-top: 0;
    white-space: nowrap;
    font-size: 32px;
    font-weight: 100;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

span.fc-button {
    font-family: 'Roboto', sans-serif;
    border-color: #9675ce;
    color: #9675ce;
}

.fc-state-down, .fc-state-active {
    background-color: #9675ce !important;
    color: #FFF !important;
}

.fc .fc-header-space {
    padding-left: 10px;
}

.fc-header .fc-button {
    margin-bottom: 1em;
    vertical-align: top;
}

/* buttons edges butting together */
.fc-header .fc-button {
    margin-right: -1px;
}

.fc-header .fc-corner-right,
.fc-header .ui-corner-right {
    /* theme */
    margin-right: 0;
    /* back to normal */
}

/* button layering (for border precedence) */
.fc-header .fc-state-hover,
.fc-header .ui-state-hover {
    z-index: 2;
}

.fc-header .fc-state-down {
    z-index: 3;
}

.fc-header .fc-state-active,
.fc-header .ui-state-active {
    z-index: 4;
}

/* Content
------------------------------------------------------------------------*/
.fc-content {
    clear: both;
    zoom: 1;
    /* for IE7, gives accurate coordinates for [un]freezeContentHeight */
}

.fc-view {
    width: 100%;
    overflow: hidden;
}

/* Cell Styles
------------------------------------------------------------------------*/
/* <th>, usually */
.fc-widget-content {
    /* <td>, usually */
    border: 1px solid #e5e5e5;
}

.fc-widget-header {
    border-bottom: 1px solid #EEE;
}

.fc-state-highlight {
    /* <td> today cell */
    /* TODO: add .fc-today to <th> */
    /* background: #fcf8e3; */
}

.fc-state-highlight > div > div.fc-day-number {
    background-color: #ff3b30;
    color: #FFFFFF;
    border-radius: 50%;
    margin: 4px;
}

.fc-cell-overlay {
    /* semi-transparent rectangle while dragging */
    background: #bce8f1;
    opacity: .3;
    filter: alpha(opacity=30);
    /* for IE */
}

/* Buttons
------------------------------------------------------------------------*/
.fc-button {
    position: relative;
    display: inline-block;
    padding: 0 .6em;
    overflow: hidden;
    height: 1.9em;
    line-height: 1.9em;
    white-space: nowrap;
    cursor: pointer;
}

.fc-state-default {
    /* non-theme */
    border: 1px solid;
}

.fc-state-default.fc-corner-left {
    /* non-theme */
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right {
    /* non-theme */
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/*
    Our default prev/next buttons use HTML entities like ‹ › « »
    and we'll try to make them look good cross-browser.
*/
.fc-text-arrow {
    margin: 0 .4em;
    font-size: 2em;
    line-height: 23px;
    vertical-align: baseline;
    /* for IE7 */
}

.fc-button-prev .fc-text-arrow,
.fc-button-next .fc-text-arrow {
    /* for ‹ › */
    font-weight: bold;
}

/* icon (for jquery ui) */
.fc-button .fc-icon-wrap {
    position: relative;
    float: left;
    top: 50%;
}

.fc-button .ui-icon {
    position: relative;
    float: left;
    margin-top: -50%;
    *margin-top: 0;
    *top: -50%;
}

.fc-state-default {
    border-color: #ff3b30;
    color: #ff3b30;
}

.fc-button-month.fc-state-default, .fc-button-agendaWeek.fc-state-default, .fc-button-agendaDay.fc-state-default {
    min-width: 67px;
    text-align: center;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
    color: #333333;
    background-color: #FFE3E3;
}

.fc-state-hover {
    color: #ff3b30;
    text-decoration: none;
    background-position: 0 -15px;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
    background-color: #ff3b30;
    background-image: none;
    outline: 0;
    color: #FFFFFF;
}

.fc-state-disabled {
    cursor: default;
    background-image: none;
    background-color: #FFE3E3;
    filter: alpha(opacity=65);
    box-shadow: none;
    border: 1px solid #FFE3E3;
    color: #ff3b30;
}

/* Global Event Styles
------------------------------------------------------------------------*/
.fc-event-container > * {
    z-index: 8;
}

.fc-event-container > .ui-draggable-dragging,
.fc-event-container > .ui-resizable-resizing {
    z-index: 9;
}

.fc-event {
    border: 1px solid #FFF;
    /* default BORDER color */
    background-color: #FFF;
    /* default BACKGROUND color */
    color: #919191;
    /* default TEXT color */
    font-size: 12px;
    cursor: default;
}

.fc-event.chill {
    background-color: #f3dcf8;
}

.fc-event.info {
    background-color: #c6ebfe;
}

.fc-event.important {
    background-color: #FFBEBE;
}

.fc-event.success {
    background-color: #BEFFBF;
}

.fc-event:hover {
    opacity: 0.7;
}

a.fc-event {
    text-decoration: none;
}

a.fc-event,
.fc-event-draggable {
    cursor: pointer;
}

.fc-rtl .fc-event {
    text-align: right;
}

.fc-event-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    line-height: 15px;
}

.fc-event-time,
.fc-event-title {
    padding: 0 1px;
}

.fc .ui-resizable-handle {
    display: block;
    position: absolute;
    z-index: 99999;
    overflow: hidden;
    /* hacky spaces (IE6/7) */
    font-size: 300%;
    /* */
    line-height: 50%;
    /* */
}

/* Horizontal Events
------------------------------------------------------------------------*/
.fc-event-hori {
    border-width: 1px 0;
    margin-bottom: 1px;
}

.fc-ltr .fc-event-hori.fc-event-start,
.fc-rtl .fc-event-hori.fc-event-end {
    border-left-width: 1px;
    /*
  border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
  */
}

.fc-ltr .fc-event-hori.fc-event-end,
.fc-rtl .fc-event-hori.fc-event-start {
    border-right-width: 1px;
    /*
  border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  */
}

/* resizable */
.fc-event-hori .ui-resizable-e {
    top: 0 !important;
    /* importants override pre jquery ui 1.7 styles */
    right: -3px !important;
    width: 7px !important;
    height: 100% !important;
    cursor: e-resize;
}

.fc-event-hori .ui-resizable-w {
    top: 0 !important;
    left: -3px !important;
    width: 7px !important;
    height: 100% !important;
    cursor: w-resize;
}

.fc-event-hori .ui-resizable-handle {
    _padding-bottom: 14px;
    /* IE6 had 0 height */
}

/* Reusable Separate-border Table
------------------------------------------------------------*/
table.fc-border-separate {
    border-collapse: separate;
}

.fc-border-separate th,
.fc-border-separate td {
    border-width: 1px 0 0 1px;
}

.fc-border-separate th.fc-last,
.fc-border-separate td.fc-last {
    border-right-width: 1px;
}

.fc-border-separate .fc-week .fc-first {
    border-left: 0;
}

.fc-border-separate .fc-week .fc-last {
    border-right: 0;
}

.fc-border-separate tr.fc-last th {
    border-bottom-width: 1px;
    border-color: #cdcdcd;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
}

.fc-border-separate tbody tr.fc-first td,
.fc-border-separate tbody tr.fc-first th {
    border-top-width: 0;
}

/* Month View, Basic Week View, Basic Day View
------------------------------------------------------------------------*/
.fc-grid th {
    text-align: center;
}

.fc .fc-week-number {
    width: 22px;
    text-align: center;
}

.fc .fc-week-number div {
    padding: 0 2px;
}

.fc-grid .fc-day-number {
    float: right;
    padding: 0 2px;
}

.fc-grid .fc-other-month .fc-day-number {
    opacity: 0.3;
    filter: alpha(opacity=30);
    /* for IE */
    /* opacity with small font can sometimes look too faded
       might want to set the 'color' property instead
       making day-numbers bold also fixes the problem */
}

.fc-grid .fc-day-content {
    clear: both;
    padding: 2px 2px 1px;
    /* distance between events and day edges */
}

/* event styles */
.fc-grid .fc-event-time {
    font-weight: bold;
}

/* right-to-left */
.fc-rtl .fc-grid .fc-day-number {
    float: left;
}

.fc-rtl .fc-grid .fc-event-time {
    float: right;
}

/* Agenda Week View, Agenda Day View
------------------------------------------------------------------------*/
.fc-agenda table {
    border-collapse: separate;
}

.fc-agenda-days th {
    text-align: center;
}

.fc-agenda .fc-agenda-axis {
    width: 50px;
    padding: 0 4px;
    vertical-align: middle;
    text-align: right;
    white-space: nowrap;
    font-weight: normal;
}

.fc-agenda .fc-week-number {
    font-weight: bold;
}

.fc-agenda .fc-day-content {
    padding: 2px 2px 1px;
}

/* make axis border take precedence */
.fc-agenda-days .fc-agenda-axis {
    border-right-width: 1px;
}

.fc-agenda-days .fc-col0 {
    border-left-width: 0;
}

/* all-day area */
.fc-agenda-allday th {
    border-width: 0 1px;
}

.fc-agenda-allday .fc-day-content {
    min-height: 34px;
    /* TODO: doesnt work well in quirksmode */
    _height: 34px;
}

/* divider (between all-day and slots) */
.fc-agenda-divider-inner {
    height: 2px;
    overflow: hidden;
}

.fc-widget-header .fc-agenda-divider-inner {
    background: #eee;
}

/* slot rows */
.fc-agenda-slots th {
    border-width: 1px 1px 0;
}

.fc-agenda-slots td {
    border-width: 1px 0 0;
    background: none;
}

.fc-agenda-slots td div {
    height: 20px;
}

.fc-agenda-slots tr.fc-slot0 th,
.fc-agenda-slots tr.fc-slot0 td {
    border-top-width: 0;
}

.fc-agenda-slots tr.fc-minor th.ui-widget-header {
    *border-top-style: solid;
    /* doesn't work with background in IE6/7 */
}

/* Vertical Events
------------------------------------------------------------------------*/
.fc-event-vert {
    border-width: 0 1px;
}

.fc-event-vert.fc-event-start {
    border-top-width: 1px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.fc-event-vert.fc-event-end {
    border-bottom-width: 1px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.fc-event-vert .fc-event-time {
    white-space: nowrap;
    font-size: 10px;
}

.fc-event-vert .fc-event-inner {
    position: relative;
    z-index: 2;
}

.fc-event-vert .fc-event-bg {
    /* makes the event lighter w/ a semi-transparent overlay  */
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .25;
    filter: alpha(opacity=25);
}

.fc .ui-draggable-dragging .fc-event-bg,
.fc-select-helper .fc-event-bg {
    display: none \9;
    /* for IE6/7/8. nested opacity filters while dragging don't work */
}

/* resizable */
.fc-event-vert .ui-resizable-s {
    bottom: 0 !important;
    /* importants override pre jquery ui 1.7 styles */
    width: 100% !important;
    height: 8px !important;
    overflow: hidden !important;
    line-height: 8px !important;
    font-size: 11px !important;
    font-family: monospace;
    text-align: center;
    cursor: s-resize;
}

.fc-agenda .ui-resizable-resizing {
    /* TODO: better selector */
    _overflow: hidden;
}

thead tr.fc-first {
    background-color: #f7f7f7;
}

table.fc-header {
    background-color: #FFFFFF;
    border-radius: 6px 6px 0 0;
}

.fc-week .fc-day > div .fc-day-number {
    font-size: 15px;
    margin: 2px;
    min-width: 19px;
    padding: 6px;
    text-align: center;
    width: 30px;
    height: 30px;
}

.fc-sun, .fc-sat {
    color: #b8b8b8;
}

.fc-week .fc-day:hover .fc-day-number {
    background-color: #B8B8B8;
    border-radius: 50%;
    color: #FFFFFF;
    transition: background-color 0.2s;
}

.fc-week .fc-day.fc-state-highlight:hover .fc-day-number {
    background-color: #ff3b30;
}

.fc-button-today {
    border: 1px solid rgba(255, 255, 255, 0);
}

.fc-view-agendaDay thead tr.fc-first .fc-widget-header {
    text-align: right;
    padding-right: 10px;
}

/*!
 * FullCalendar v1.6.4 Print Stylesheet
 * Docs & License: http://arshaw.com/fullcalendar/
 * (c) 2013 Adam Shaw
 */
/*
 * Include this stylesheet on your page to get a more printer-friendly calendar.
 * When including this stylesheet, use the media='print' attribute of the <link> tag.
 * Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css.
 */
/* Events
-----------------------------------------------------*/
.fc-event {
    background: #fff !important;
    color: #000 !important;
}

/* for vertical events */
.fc-event-bg {
    display: none !important;
}

.fc-event .ui-resizable-handle {
    display: none !important;
}

/*# sourceMappingURL=be2022.css.map */
