﻿
/* ---------------------- Circular Menu --------------- */


.c-circle-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu {
        width: 75px;
        height: 75px;
    }
}

.c-circle-menu__items {
    display: block;
    list-style: none;
    position: absolute;
    z-index: 2;
    margin: 0;
    padding: 0;
}

.c-circle-menu__item {
    display: block;
    position: absolute;
    top: 0;
    left: 10px;
    opacity: 0;
    background-color: #ff6600;
    -webkit-transition: opacity, -webkit-transform;
    transition: opacity, -webkit-transform;
    transition: transform, opacity;
    transition: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.35, -0.59, 0.47, 0.97);
    transition-timing-function: cubic-bezier(0.35, -0.59, 0.47, 0.97);
}


    .c-circle-menu__item p {
        color: white;
        position: absolute;
        animation: paragraph 2s 1;
        line-height: 1rem;
        text-align: right;
        font-size: 1rem;
        text-shadow: 1px 1px 1px #000000;
    }




@keyframes paragraph {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.c-circle-menu__item:hover {
    background-color: #c64c09;
}

.c-circle-menu__item:nth-child(1) p {
    right: 70px;
    top: 0;
}

.c-circle-menu__item:nth-child(2) p {
    right: 70px;
    top: -20px;
}

.c-circle-menu__item:nth-child(3) p {
    right: 70px;
    top: -10px;
}

.c-circle-menu__item:nth-child(4) p {
    right: 70px;
    top: -30px;
}

.c-circle-menu__item:nth-child(5) p {
    right: 45px;
    top: -30px;
}

.c-circle-menu__item:nth-child(6) p {
    right: 30px;
    top: -40px;
    width: 80px;
}


@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu__item {
        width: 50px;
        height: 50px;
        border-radius: 50px;
    }
}

/**
   * Transisition delays at the default state.
   */
.c-circle-menu__item:nth-child(1) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.c-circle-menu__item:nth-child(2) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.c-circle-menu__item:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.c-circle-menu__item:nth-child(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.c-circle-menu__item:nth-child(5) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.c-circle-menu__item:nth-child(6) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

/**
   * We're using the .is-active class, which is added to the menu via JavaScript.
   * Once the menu is active, the items inherit the properties below. We will
   * manually write out the transform properties for first and last items, as we
   * already know their position. For all items in between though, we'll use some
   * polar-to-cartesian math and some Sass functions to get the positioning.
   */
.c-circle-menu.is-active .c-circle-menu__item {
    -webkit-transition-timing-function: cubic-bezier(0.35, 0.03, 0.47, 1.59);
    transition-timing-function: cubic-bezier(0.35, 0.03, 0.47, 1.59);
}

    .c-circle-menu.is-active .c-circle-menu__item:nth-child(1) {
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu.is-active .c-circle-menu__item:nth-child(1) {
        -webkit-transform: translate(-250px, 0);
        transform: translate(-250px, 0);
    }
}

.c-circle-menu.is-active .c-circle-menu__item:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu.is-active .c-circle-menu__item:nth-child(2) {
        -webkit-transform: translate(-240px, -80px);
        transform: translate(-240px, -80px);
    }
}

.c-circle-menu.is-active .c-circle-menu__item:nth-child(3) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu.is-active .c-circle-menu__item:nth-child(3) {
        -webkit-transform: translate(-210px, -155px);
        transform: translate(-210px, -155px);
    }
}

.c-circle-menu.is-active .c-circle-menu__item:nth-child(4) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu.is-active .c-circle-menu__item:nth-child(4) {
        -webkit-transform: translate(-155px, -210px);
        transform: translate(-155px, -210px);
    }
}

.c-circle-menu.is-active .c-circle-menu__item:nth-child(5) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu.is-active .c-circle-menu__item:nth-child(5) {
        -webkit-transform: translate(-85px, -250px);
        transform: translate(-85px, -250px);
    }
}


.c-circle-menu.is-active .c-circle-menu__item:nth-child(6) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu.is-active .c-circle-menu__item:nth-child(6) {
        -webkit-transform: translate(0, -260px);
        transform: translate(0, -260px);
    }
}

/**
   * Apart from the transform properties, we'll also make sure the items get
   * the correct opacity.
   */
.c-circle-menu.is-active .c-circle-menu__item {
    opacity: 1;
}


/**
   * Let's style the links now. This is just boilerplate stuff, and of course,
   * you'll probably want to change up the icons to match your needs. In any case,
   * we'll do it here for the sake of completion.
   */
.c-circle-menu__link {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
}

.c-circle-menu__item a i {
    color: white;
    font-size: 1.5rem;
}

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu__link {
        border-radius: 50px;
    }
}

/* .c-circle-menu__link img {
    display: block;
    max-width: 100%;
    height: auto;
  }
   */


/* -----------------------------------------------------------------------------

    The Toggle Component

  ----------------------------------------------------------------------------- */

.c-circle-menu__toggle {
    display: block;
    position: absolute;
    z-index: 100;
    margin: 0;
    padding: 0;
    /* width: 48px;
    height: 48px; */
    background-color: #ff6600;
    font: inherit;
    font-size: 0;
    text-indent: -9999px;
    border-radius: 24px;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    /* reset some browser defaults */
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    background-image: url(../Images/btn-pili-ayuda.png);
    background-size: contain;
    background-repeat: none;
}

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu__toggle {
        width: 70px;
        height: 70px;
        border-radius: 50px;
    }
}

.c-circle-menu__toggle:hover,
.c-circle-menu__toggle:focus,
.c-circle-menu__toggle.is-active {
    outline: none;
    background-color: #c64c09;
}



.c-circle-menu__toggle span,
.c-circle-menu__toggle span::before,
.c-circle-menu__toggle span::after {
    display: block;
    position: absolute;
    transition: all .2s;
}

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu__toggle span {
        opacity: 0;
    }

        .c-circle-menu__toggle span,
        .c-circle-menu__toggle span::before,
        .c-circle-menu__toggle span::after {
            height: 6px;
            border-radius: 50px;
            background-color: white;
        }
}

.c-circle-menu__toggle span {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    background-color: transparent;
}

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu__toggle span {
        top: 32px;
        left: 16px;
        right: 16px;
    }
}

.c-circle-menu__toggle span::before,
.c-circle-menu__toggle span::after {
    left: 0;
    width: 100%;
    content: "";
    -webkit-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0s;
    transition-delay: 0.3s, 0s;
}

.c-circle-menu__toggle span::before {
    top: -8px;
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, -webkit-transform;
    transition-property: top, transform;
    transition-property: top, transform, -webkit-transform;
}

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu__toggle span::before {
        top: -16px;
    }
}

.c-circle-menu__toggle span::after {
    bottom: -8px;
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
    transition-property: bottom, transform, -webkit-transform;
}

@media (min-width: 480px) and (min-height: 480px) {
    .c-circle-menu__toggle span::after {
        bottom: -16px;
    }
}

/* button active state */

.c-circle-menu__toggle.is-active {
    background-image: none;
}

    .c-circle-menu__toggle.is-active span {
        background: none;
        opacity: 1;
    }

        .c-circle-menu__toggle.is-active span::before {
            top: 0;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition-delay: 0s, 0.3s;
            transition-delay: 0s, 0.3s;
            background-color: white;
        }

        .c-circle-menu__toggle.is-active span::after {
            bottom: 0;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transition-delay: 0s, 0.3s;
            transition-delay: 0s, 0.3s;
        }

/* -----------------------------------------------------------------------------

    The Mask Component

  ----------------------------------------------------------------------------- */

.c-circle-menu__mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: opacity 0.8s, visibility 0.8s;
    transition: opacity 0.8s, visibility 0.8s;
}

    .c-circle-menu__mask.is-active {
        opacity: 1;
        visibility: visible;
    }



small {
    line-height: 1rem;
}

.choose-profile .row {
    background-image: url(../Content/Images/popup/emp/0623-fondo.png);
    background-position: 20px -40px;
    background-repeat: no-repeat;
    padding-bottom: 1.3em;
}

.choose-profile p {
    padding: 0 1em;
    font-size: 1.3rem;
    line-height: 1.2em;
    margin-bottom: 0;
}

.choose-profile h2 {
    display: block;
    text-align: center !important;
    color: #606060;
    margin: 1em 1em 0 1em;
}

.choose-profile a img {
    transition: .3s ease-in-out;
    transform: scale(.9);
}

.choose-profile a span {
    transition: .3s ease-in-out;
    line-height: 1.2em;
    margin-top: .8em;
    display: block;
}

.choose-profile a:hover span {
    color: #6d3330 !important;
}

.choose-profile a:hover img {
    transform: scale(1);
}

.text-info {
    color: #ff702c;
}

a.text-info:focus, a.text-info:hover {
    color: #ffb37b;
}

.compatibility {
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

    .compatibility li {
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }

        .compatibility li i {
            font-size: 1.7em;
            margin-right: 0;
        }

        .compatibility li span {
            font-size: .82em;
        }

        .compatibility li strong {
            display: block;
        }

.list-inline-item a i {
    font-size: 1.8em;
}

.validation {
    color: red;
    position: absolute;
    top: 18px;
    width: 250px;
    line-height: 1em;
    left: 110px;
    margin-bottom: 0;
    font-size: .9em;
}
