.dataunlocker-wrapper {
    min-height: 510px;
    background-color: #FDFCFD;
    padding: 80px;
    margin: 40px auto;
}

.dataunlocker-logo {
    display: block;
    margin: auto;
}
.dataunlocker-subtitle {
    font-weight: 400;
    color: #A3A3A3;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}
.dataunlocker-wrapper {
    font-family: "Source Sans 3", serif;
}
.dataunlocker-form-wrapper {
    margin: 40px auto;
    background: #fff;
    padding: 20px;
    border: 1px solid #D4D4D4;
    max-width: 620px;
    display: flex;
    justify-content: space-between;
    border-radius: 16px;
    flex-wrap: wrap;
}

.column.w50 p,
.column.w100 p {
    margin-top: 6px;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #737373;
}
.submit-button {
    display: flex;
    justify-content: center;

}
.dataunlocker-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    gap: 8px;
    height: 40px;
    background: #9333EA;
    border-radius: 30px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}
.column.w50 {
    width: calc(50% - 12px);
}
.column.w100 {
    width: 100%;
}

.column.w50 select,
.column.w50 input {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    padding: 8px 16px;
    border-color: #D4D4D4;
}

.column.w50 select {
    padding-left: 52px;
    line-height: 1;
    background: url("images/document.svg") no-repeat center;
    background-size: 24px 24px;
    background-position: 16px center;
}

.column.w50 label {
    background: #fff;
    margin-bottom: -19px;
    margin-left: 16px;
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #737373;
    z-index: 1;
}

.dataunlocker-buttons {
    display: flex;
    justify-content: center;
}

.button-wrapper {
    margin-left: 10px;
    margin-right: 10px;
}

.buttons-sub {
    margin-top: 50px;
    color: #A3A3A3;
}

.margin-0 {
    margin-left: 0;
    margin-right: 0;
}

#update-btn {
    background: #9333EA;
}
#uninstall-btn {
    background: #DC2626;
}

.dataunlocker-button:disabled {
    background: #D8B4FE;
    cursor: not-allowed;
}
.btn-loader {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}
.hidden {
    display: none;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
#dataunlocker-message {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

.du-icon {
    width: 16px;
    height: 16px;
}

.du-not-installed .w100 p {
    display: none;
}

.du-installed .w50 p {
    display: none;
}

select,
select:focus,
select:active{
    outline: none;
}
input:-webkit-autofill,
input:valid,
input:focus,
input:active {
    background: transparent;
    outline: none;
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

.dataunlocker-button.install-btn {
	position: absolute;
    left: 0;
    right: 0;
    width: fit-content;
    margin: auto;
}

.dataunlocker-buttons button {
	cursor: pointer;
}

.dataunlocker-buttons button::disabled {
	cursor: not-allowed;
}

.du-installed input:-webkit-autofill, 
.du-installed input:valid, 
.du-installed input:focus, 
.du-installed input:active,
.du-installed .column.w50 input{
	color: rgba(44,51,56,.5) !important;
	opacity: .5;
}

.dataunlocker-wrapper a {
    color: inherit;
}

.js-select-container {
    position: relative;
    margin-bottom: 10px;
}

.js-select-container select {
    width: 100%;
    padding-right: 40px;
}

.refresh-icon {
    position: absolute;
    top: 85%;
    right: -16px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: #7E22CE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.refresh-icon:hover {
    background: #6B1A9B;
}

.refresh-icon img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

.refresh-icon.spinning img {
    animation: spin 1s linear infinite;
}