* {
    box-sizing: border-box;
}

body {
    background-color: rgba(0, 0, 0, 0.05);
}

.contact-ads {
    max-width: 750px;
}

.contact-form {
    margin-bottom: 100px;
    border-radius: 5px;
}

.form_type {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    background-color: white;
    overflow: hidden;
}

.form_type > :nth-child(1) {
    border-radius: 15px 0 0 15px;
}

.form_type > :nth-child(2) {
    border-radius: 0 15px 15px 0;
}

.form_type > div {
    padding: 20px;
    background-color: white;
    flex: 1;
    text-align: center;
    font-size: x-large;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background-color: #DCE3E8;
    color: #1C2B36;
}

.selected {
    background-color: #186ADE !important;
    color: white !important;
}

.contact-form input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    background-color: white;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-form .form-group label {
    color: rgba(0, 0, 0, 0.5);
}

.LogoContainer {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.text_description {
    text-align: center;
    font-size: medium;
}

.paragraph_container {
    overflow: hidden;
    height: 60px;
}

.paragraph_container_expand {
    height: fit-content !important;
}

.read_more_button {
    color: rgb(40, 40, 255);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}
.read_more_button:hover {
    text-decoration: underline;
}

.col-md-12:first-child {
    margin-top: 30px;
}

.notification_bar {
    display: flex;
    position: fixed;
    z-index: 10;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    bottom: 0;
    left: 0;
    transition: 0.5s;
    transform: translateY(110px);
}

.notification_bar > div {
    padding: 15px 25px;
    border-radius: 100px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.successBacgroundColor {
    background-color: #35BD26;
}

.failBacgroundColor {
    background-color: #D44A3C;
}

.showNotification {
    transform: none;
}

.formCheckBox {
    flex: 1;
}

/* uuid popup styles */
.uuid_popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 20px;
    background-color: white;
}

.uuid_popup_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background-color: rgb(232, 250, 235);
    padding: 40px;
    gap: 15px;
    border-radius: 5px;
}

.uuid_popup_inner * {
    text-align: center;
}

.uuid_popup_inner .header_message {
    font-size: x-large;
}

.uuid_popup_inner .uuid_box {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-size: x-large;
    padding: 20px;
    width: fit-content;
    text-align: center;
    border-radius: 5px;
}

.uuid_popup_inner .uuid_box_value {
    white-space: nowrap;
    flex: 1;
}

.uuid_popup_inner span {
    background-color: rgb(245, 253, 255);
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 5px;
    color: rgba(0, 0, 0, 0.75);
    font-size: xx-large;
    cursor: pointer;
}

.uuid_popup .cancelButtonForUUID {
    border: 4px solid rgba(0, 0, 0, 0.1);
    background-color: green;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 25px;
    cursor: pointer;
}

.uuid_popup .cancelButtonForUUID:hover {
    background-color: rgb(0, 158, 0);
}

.question_container {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.05);
}

.question_container > div {
    width: 100%;
}
