﻿/*modal*/

.modal {
    background: rgba(190, 29, 44, 0.6);
}

.modal-title {
    color: white;
    font-family: 'TextBoldPS';
    font-size: 40px;
    border-bottom: 2px #be1d2c solid;
    margin-bottom: -10px !important;
}

.modal-content {
    background-color: black;
}

.modal-body {
    background-color: black;
    color: white;
}

    .modal-body p {
        text-align: start;
        font-family: 'NormalPS';
        padding-bottom: 20px;
    }

    .modal-body .bottomp {
        padding-top: 30px;
    }

.modal-lg {
    max-width: 70%;
}

.logos-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.logo {
    width: 200px; /* Adjust logo size if needed */
}


.modal-header,
.modal-footer {
    border: none;
}

    .modal-footer p {
        font-size: 12px;
        text-align: start;
        font-family: 'BoldPS';
        color: #be1d2c;
    }

    .modal-footer button {
        color: white;
    }


.transparent {
    background-color: transparent !important;
    border: none !important;
    justify-content: end; 

}
.accordion-button::after {
    display: none; 
}

.transparent-text {
    background-color: transparent !important;
    color: #000 !important; 
}

.accordion-item {
    border: none !important;
}

.accordion-button:focus, .accordion-button.active {
    outline: none !important; /* Uklanja outline (plavi okvir oko dugmeta) */
    box-shadow: none !important; /* Uklanja shadow efekat */
    background-color: transparent !important; /* Uklanja pozadinsku boju kada je dugme aktivno */
}

.accordion-button:hover {
    background-color: transparent !important;
    border: none !important;
}


/*TELEFON*/
@media (max-width: 750px) {
    .modal-lg {
        max-width: 100%;
    }

    .logo {
        width: 120px; /* Adjust logo size if needed */
    }

    .modal-title {
        font-size: 25px;
    }

    .modal-body p {
        font-size: 15px;
        padding-bottom:0 !important;
    }

    .modal-footer button {
        margin-top:20px;
    }


}


/*TABLET*/
@media (min-width: 750px) and (max-width: 1000px) {
}