
/*-- Normálny button --*/
/*-- sipka napravo --*/
.button.normal, .button:not(.back) {
    background-color: #bc0044;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    margin: 15px 0;
    padding: 8px 0 8px 15px;
    text-align: center;
    text-decoration: none;
    position: relative;
    transition:all 0.3s;
}
a.button:not(.back)::after{
    font-family: FontAwesome;
    content: "  \f054";
    border-left: 1px solid #fff;
    margin: 0 5px 0 15px;
    padding: 2px 10px;
    font-weight: 800;
    position: relative;
    z-index: 3;
    text-decoration: none;
}
a.button:not(.back):hover::before,
a.button:not(.back):focus::before {
    width: 40px;
}

a.button:not(.back):hover::after,
a.button:not(.back):focus::after {
    padding: 11px 10px 11px;
}
a.button:not(.back)::before{
    background-color: #666;
    content: " ";
    height: 100%;
    right: 0;
    position: absolute;
    top: 0px;
    transition: width 0.3s ease 0s, padding-top 0.3s ease 0s;
    width: 0;
    z-index: 2;
}
/*-- sipka nalavo --*/
.button.back {
    background-color: #666;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    margin: 15px 0;
    padding: 8px 15px 8px 0;
    text-align: center;
    text-decoration: none;
    position: relative;
}
a.button.back::before{
    font-family: FontAwesome;
    content: "  \f053";
    border-left: none;
    border-right: 1px solid #fff;
    margin: 0 15px 0 5px;
    padding: 2px 13px 2px 10px;
    font-weight: 800;
    position: relative;
    z-index: 3;
}
a.button.back:hover::after,
a.button.back:focus::after {
    width: 40px;
}

a.button.back:hover::before,
a.button.back:focus::before {
    padding: 11px 13px 11px 10px;
}
a.button.back::after{
    background-color: rgba(255,255,255,0.15);
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0px;
    transition: width 0.3s ease 0s, padding-top 0.3s ease 0s;
    width: 0;
    z-index: 2;
}
/*
.button:hover {
    color: white;
    background-color: #1e628e;
}*/

.button.special {
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
}

.button.special svg{
    width: 60px;
    margin-right: 10px;
}

.button.special:hover::before{
    width: 37px;
}

.button .holder {
    display: inline-block;
}

/*-- Biely okrúhly button --*/ 
.button.button-white { 
    background-color: #FFF;
    color: #000;
    border-radius: 20px;
    padding: 10px 20px;
    text-transform: none;
    font-size: 14px;
    cursor: pointer;
}
.button.button-white::before {
    content: none !important;
    width: 0px;
}
.button.button-white::after{
    font-family: FontAwesome;
    content: "  \f061";
    margin: 0 !important;
    padding: 0 !important;
    border:none !important;
}
.button.button-white:hover::after, 
.button.button-white:focus::after {
    padding:0;
}

.button.button-white:hover, 
.button.button-white:focus {
   background-color: #1F1F1F;
   color: #FFF;
}


.button.button-white span {
    margin-right: 5px;
}

/*
.button.button-white:hover {
    color: #1e628e;
    background: white;
}

.button.button-white:hover span {
    color: #1e628e;

}*/

/*-- Oddelovač --*/
hr {
    
    border: 0;
    border-top: 1px solid #ddd;
    padding-bottom: 20px;
    margin-top: 20px;
    margin-bottom: 0;
}

/*-- Malý sivý button --*//*
.button.more,
.button.back{
    padding: 4px 14px 6px;
    text-transform: lowercase;
    background-color: #e2e4e6;
    border-width: 0px;
}

.button.more:hover,
.button.back:hover {
    background-color: #1e628e;
}*/

/*-- Bez textu, len ikonka --*/
.button.icon{
    width: 25px;
    height: 25px;
    padding: 0px;
    margin: 0px;
    background-color: #E2E4E6;
    border-width: 0px;
    text-align: center;
    font-size: 23px;
}

.button.icon:hover {
    background-color: #1e628e;
}

.button.icon .holder{
    display: none;
}

/*-- Textový button --*/
a.button.text{
    padding: 8px 0px 8px 0;
    text-transform: lowercase;
    background-color: transparent;
    border-width: 0px;
    color: #3b3939;
    font-weight: 300;
    display: inline-block;
}
a.button.text:after {
    border-left: 0;
    margin-left: 5px;
}
a.button.text:hover:after {
    border-left: 0;
}

a.button.text:hover {
    background-color: transparent;
    color: #EA2026;
}

a.button.text .fa-caret-right, a.button.text .fa-caret-left{
	color: #ea2026;
}


/************************************************************************/
/*  TEXTY */
/*************************************************************************/

/*-- Normálny text --*/
.text.normal {

}

/*-- Zmenšený text --*/
.text.small,
.small{
    font-size: 0.8em;
}

/*-- Zvýraznenie --*/
.text.perex {
    color: #000;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
}


/*-- Na červenom pozadí --*/
.text.bgred {
    color: #fff;
    background-color: #CB0044;
    padding: 13px 20px;
}

/*-- Na sivom pozadí --*/
.text.bggray {
    color: #fff;
    background-color: #666666;
    padding: 13px 20px;
}

/*-- Sivý text --*/
.text.gray  {
     color: #aaa;
}

/*-- Biely text --*/
.text.white  {
     color: #fff;
}
/*-- Cerveny text --*/
.text.red {
    color: #CB0044;
}
/*-- Veľký text --*/
.text-mega {
    font-size: 46px;
    font-weight: 200;
}

/*-- Podčiarknutý text --*/
.text.underline {
    border-bottom: 5px solid #1e628e;
}

li.fa {
    display: block;
}

/************************************************************************/
/*  Ramik */
/*************************************************************************

/*-- Orámovanie --*/
/*-- Bez rámika --*/
.ramik.border-none,
*.border-none {
    border-width:0;
    outline: 0;
}

/*-- Červený rámik --*/
.ramik.border-red,
*.border-red {
    border-width:1px;
    border-style: solid;
    border-color: #CB0044;
    padding: 13px 20px;
}

/*-- Sivý rámik --*/
.ramik.border-gray,
*.border-gray {
    border-width:1px;
    border-style: solid;
    border-color: #ECECEC;
    padding: 13px 20px;
}


/************************************************************************/
/*  Pozadie */
/*************************************************************************/

.bg-dark, .bg-light{
    background-size: cover;
    background-position: center;
}

/*-- Bez pozadia --*/
.pozadie.bg-none,
*.bg-none {
    background:none;
}

/*-- Červené pozadie --*/
.pozadie.bg-red,
*.bg-red{
    background-color: #CB0044;
}

/*-- Tmavé pozadie --*/
.pozadie.bg-dark,
*.bg-dark{
     background-color: #666;
}

/*-- Svetlo sivé pozadie --*/
.pozadie.bg-gray,
*.bg-gray {
    background-color: #ECECEC;
}

/*-- Biele pozadie --*/
.pozadie.bg-white,
*.bg-white {
    background-color: #fff;
}

.bg-dark *,
.bg-dark *:hover,
.bg-red *,
.bg-red *:hover{
    color: white;
    border-color: white;
}


/************************************************************************/
/*  Oblé Rohy */
/*************************************************************************/


/*-- Bez zaoblenia --*/
.radius.radius-none,
*.radius-none {
    border-radius: 0px;
}

/*-- Malé zaoblenie --*/
.radius.radius-small,
*.radius-small {
    border-radius: 5px;
}

/*-- Stredné zaoblenie --*/
.radius.radius-medium,
*.radius-medium {
    border-radius: 10px;
}

/*-- Veľké zaoblenie --*/
.radius.radius-large,
*.radius-large {
    border-radius: 10px;
}

/*-- kruh --*/
.radius.radius-circle,
*.radius-circle {
    border-radius: 50%;
}



