/*=====================================
YOU CAN WRIGHT CUSTOME CSS
======================================*/
.call-to-action-button {
    background-color: #4B3941;
    color: #ec5598 !important;
    text-align: center;
    padding: 20px !important;
    margin-top: 15px;
}

.is-fixed .call-to-action-button {
    padding: 15px 20px !important;
    margin-top: 10px;
}

.call-to-action-button:hover {
    background-color: #ec5598 !important;
    color: #4B3941 !important;
}

.info-page ul{
    margin-left: 20px;
}

.no-margin{
    margin: 0;
}

/*=========================
|==button-lang Component==|
=========================*/
.lang-button,
.lang-button-en{
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    background-color: #ec5598;
    color: #EEEEEE;
    padding: 10px 20px;
    border-radius: 25px;
    border-color: transparent;
    z-index: 10;
    outline: none;
}

@media only screen and ( min-width:992px){
    .lang-button{
        /*right: 520px;*/ /*When the BOOK APPOINTMENT Button is showing*/
        right: 330px;
    }
    .lang-button-en{
        /*right: 550px;*/ /*When the BOOK APPOINTMENT Button is showing*/
        right: 420px;
    }
}

/*=========================
|==Mega-Menu==|
=========================*/
.has-mega-menu > .mega-menu > li > p{
    margin: 0;
    padding: 0 10px;
    font-weight: bold;
    color: #ec5598;
}

/*=============================
|==My-Links & My-Codes Pages==|
=============================*/
#my-links-page,
#my-codes-page{
    background-color: #4B3941;
    min-height: calc(100vh - 205px);
    padding: 20px;
}

#my-links-page > h1,
#my-codes-page > h1{
    font-size: 2rem;
    text-align: center;
    color: #ec5598;
}

/*****Link Card*****/
#my-links-page .link-card{
    border: #ec5598 solid 2px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: #DDDDDD;
}

#my-links-page .link-card > .icon{
    font-size: 3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#my-links-page .link-card > .name-link-wrapper{
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

#my-links-page .link-card > .name-link-wrapper > p {
    margin: 0;
}

#my-links-page .link-card > .name-link-wrapper > .name {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 5px;
}

#my-links-page .link-card > .name-link-wrapper > .link {
    font-size: .8rem;
}

/*Small Devices - SM*/
@media only screen and ( min-width:576px){
    #my-links-page{
        padding: 10px 120px;
    }
}

/*Medium Devices - MD*/
@media only screen and ( min-width:768px){
    #my-links-page{
        padding: 10px 20px;
    }
}

/*Large Devices - LG*/
@media only screen and ( min-width:992px){
    #my-links-page{
        padding: 10px 120px;
    }
}

/*Extra Large Devices - Xl*/
@media only screen and ( min-width:1200px){
    //
}

/*Extra Extra Large Devices - XXL*/
@media only screen and ( min-width:1400px){
    #my-links-page{
        padding: 10px;
    }
}

/*****Code Card*****/
#my-codes-page .code-card{
    border: #ec5598 solid 4px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: #DDDDDD;
    background-color: #EEEEEE;
}

#my-codes-page .code-card > .icon,
#my-codes-page .code-card > .code{
    width: 50%;
}

#my-codes-page .code-card > .code{
    text-align: right;
}

#my-codes-page .code-card > .icon > img,
#my-codes-page .code-card > .code > img{
    width: 150px;
}

#my-codes-page .code-card > .code > img{
    border: #111111 solid 4px;
    padding: 5px;
    border-radius: 10px;
}






























