﻿.quick-contact-widget {
    background-color: #F5F5F5;
    border: 1px solid #EEE;
}

.fc-allday, .fc-starttime, .fc-endtime {
    display: none;
}

/*.fc-starttime::after {
    display: none;
}*/

.heading-block {
    margin-bottom: 10px !important;
}

.table th, .table td {
    font-size: 0.8rem;
    vertical-align: middle !important;
}

.topmargin-xsm {
    margin-top: 10px !important;
}

.i-backgroun-red {
    background-color: red !important;
    opacity: 0.50;
}

.i-backgroun-orange {
    background-color: orange !important;
    opacity: 0.50;
}

.i-backgroun-green {
    background-color: green !important;
    opacity: 0.50;
}

.i-backgroun-blue {
    background-color: blue !important;
    opacity: 0.50;
}

.i-backgroun-yellow {
    background-color: yellow !important;
    opacity: 0.50;
}

.i-backgroun-brown {
    background-color: brown !important;
    opacity: 0.50;
}


.i-circled-none {
    float: none !important;
}
.i-circled-right {
    float: right !important;
}

.pricing-price {
    font-size: 3em;
    font-weight: bold;
}

.swiper_wrapper .swiper-slide {
    background-size: contain !important;
    background-position: top center !important;
}
.swiper_wrapper .swiper-container {
    background: none !important;
}

.slider-arrow-left,
.slider-arrow-right,
.flex-prev,
.flex-next,
.slider-arrow-top-sm,
.slider-arrow-bottom-sm {
    top: 10% !important;
}




#page-title.page-title-parallax {
    background-size: cover !important;
}

#header.transparent-header + #page-title.page-title-parallax .container {
    color: #37678D !important;
    padding-top: 10px !important;
}
#header.transparent-header + #page-title.page-title-parallax .container h2{
    color: #37678D !important;
}

#page-title.page-title-dark .breadcrumb a {
    color: #37678D !important;
}

.si-share {
    border-top: 1px solid gray !important;
    border-bottom: 1px solid gray !important;
}

#page-title.page-title-parallax h1 {
    font-size: 2.5em !important;
    letter-spacing: normal !important;
}

.breadcrumb {
    top: 100% !important;
}







#msform {
    /*text-align: center;*/
    position: relative;
    margin-top: 30px;
    height: auto;
}

    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 0px;
        box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
        padding: 20px 30px;
        box-sizing: border-box;
        /*width: 80%;*/
        /*margin: 0 10%;*/
        /*stacking fieldsets above each other*/
        position: relative;
    }

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

    /*inputs*/
    /*#msform input, #msform textarea {
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 0px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
        color: #2C3E50;
        font-size: 13px;
    }*/

        #msform input:focus, #msform textarea:focus {
            -moz-box-shadow: none !important;
            -webkit-box-shadow: none !important;
            box-shadow: none !important;
            border: 1px solid #37678D;
            outline-width: 0;
            transition: All 0.5s ease-in;
            -webkit-transition: All 0.5s ease-in;
            -moz-transition: All 0.5s ease-in;
            -o-transition: All 0.5s ease-in;
        }

    /*buttons*/
    #msform .action-button {
        width: 100px;
        background: #37678D;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 25px;
        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 #37678D;
        }

    #msform .action-button-previous {
        width: 100px;
        background: #C5C5F1;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 25px;
        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 #C5C5F1;
        }

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

    #progressbar li {
        list-style-type: none;
        color: white;
        text-transform: uppercase;
        font-size: 9px;
        width: 20%;
        float: left;
        position: relative;
        letter-spacing: 1px;
    }

        #progressbar li:before {
            content: counter(step);
            counter-increment: step;
            width: 24px;
            height: 24px;
            line-height: 26px;
            display: block;
            font-size: 12px;
            color: #333;
            background: white;
            border-radius: 25px;
            margin: 0 auto 10px auto;
        }

        /*progressbar connectors*/
        #progressbar li:after {
            content: '';
            width: 100%;
            height: 2px;
            background: white;
            position: absolute;
            left: -50%;
            top: 9px;
            z-index: -1; /*put it behind the numbers*/
        }

        #progressbar li:first-child:after {
            /*connector not needed before the first step*/
            content: none;
        }

        /*marking active/completed steps green*/
        /*The number of the step and the connector before it = green*/
        #progressbar li.active:before, #progressbar li.active:after {
            background: #37678D;
            color: white;
        }


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}

    .dme_link a {
        background: #FFF;
        font-weight: bold;
        color: #ee0979;
        border: 0 none;
        border-radius: 25px;
        cursor: pointer;
        padding: 5px 25px;
        font-size: 12px;
    }

        .dme_link a:hover, .dme_link a:focus {
            background: #C5C5F1;
            text-decoration: none;
        }


.pricing-box.pricing-extended {
    margin-bottom: 10px;
}

.pricing-box.pricing-extended .pricing-action-area {
    padding: 10px;
}

.pricing-box.pricing-extended .pricing-action-area .pricing-price {
    padding-bottom: 5px;
}

.pricing-box.pricing-extended .pricing-desc {
    padding: 10px;
}

.pricing-title { padding: 5px 0; }

.pricing-features p { margin: 0px;}


.pricing-box.pricing-extended input[type=radio] {
    border: 0px;
    width: 100%;
    height: 1.5em;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #37678D;
}


.i-small.i-rounded, .i-small.i-circled, .i-small.i-bordered {
    width: 25px !important;
    height: 25px !important;
    line-height: 26px !important;
}

.i-small.i-rounded, .i-small.i-plain, .i-small.i-circled, .i-small.i-bordered {
    margin: 4px 4px 4px 0;
    font-size: 12px;
}

.top-links .badge-notify {
    top: 10px !important;
    left: 0px !important;
    color: white !important;
}

#progressbar li::before {
    content: counter(step);
    counter-increment: step;
    width: 40px;
    height: 40px;
    line-height: 36px;
    display: block;
    font-size: 20px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

.category-1 {
    background-color: red !important;
}

.category-2 {
    background-color: #37678D !important;
}

.category-3 {
    background-color: darkgreen !important;
}

.flex-content{
    display: flex;
}


#top-search button {
	display: block;
	position: relative;
	width: 14px;
	height: 14px;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #333;
    border: none;
    background-color: transparent;
	-webkit-transition: color .3s ease-in-out;
	-o-transition: color .3s ease-in-out;
	transition: color .3s ease-in-out;
}


#top-search button { z-index: 11; }

#top-search button i {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

body.top-search-open #top-search button i.icon-search3,
#top-search button i.icon-line-cross { opacity: 0; }

body.top-search-open #top-search button i.icon-line-cross {
	opacity: 1;
	z-index: 11;
	font-size: 16px;
}

.link-enhanced{
    font-size: 18px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}

.events-calendar-header div {
    color: #666;
    font-size: 20px;
    text-align: right;
    padding-top: 7px;
    padding-right: 130px;
    font-weight: 600;
    line-height: 1.5;
    font-family: 'Raleway', sans-serif;
}

div.calendar-month-year > span:not(.nocolor):not(.badge) {
    color: #37678D;
}

p.info {
    display: inline-block;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
}

p.fbox-tile.formacion{
    font-size: 20px !important;
    color: #37678D;
}

.h1size{
    font-size: 36px !important;
}