.welcome-page {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    text-align: left;
    color: #343741;
}

.welcome-page-text {
    font-weight: 400;
    font-size: 14px;
    color: #69707D;
    margin-top: 16px;
}

.welcome-page-organization-list {
    display: flex;
    gap: 24px;
    width: 100%;
    height: 100%;
    margin: 40px 0;
    flex-wrap: wrap;
    overflow: auto;
}
.mobile .welcome-page-organization-list {
    margin: 0;
}
.welcome-page-organization-list-other-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 270px;
    height: 184px;
    border: 1px dashed #A9B1BE;
    border-radius: 12px;
    padding: 16px 24px;
}
.welcome-page-organization-list-other-button:not(.skeleton) {
    cursor: pointer;
    transition: all ease .25s;
}
.welcome-page-organization-list-other-button:not(.skeleton):hover {
    border: 1px dashed #096DD9;
    color: #096DD9;
}
.welcome-page-organization-list-other-button-icon-add {
    width: 16px;
    height: 16px;
    position: relative;
}
.welcome-page-organization-list-other-button-icon-add img {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    transition: all ease .15s;
}
.welcome-page-organization-list-other-button img:nth-child(1) {
    opacity: 1;
}
.welcome-page-organization-list-other-button img:nth-child(2) {
    opacity: 0;
}
.welcome-page-organization-list-other-button:not(.skeleton):hover img:nth-child(1) {
    opacity: 0;
}
.welcome-page-organization-list-other-button:not(.skeleton):hover img:nth-child(2) {
    opacity: 1;
}
.welcome-page-organization-list-other-button-text {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #69707D;
    transition: all ease .25s;
}
.welcome-page-organization-list-other-button:not(.skeleton):hover .welcome-page-organization-list-other-button-text {
    color: #096DD9;
}

