.dmt-country-select {
    position: relative;
    margin: 20px 0 30px;

    .dmt-country-button {
        @include border-radius(5px);
        @include box-shadow(0px 0px 2px 2px, rgba(0, 0, 0, 0.2));
    }

    &.dmt-country-select-error {
        .dmt-country-button {
            border-color: $offline;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .dmt-field-error {
            display: block;
        }
    }

    .dmt-field-error {
        display: none;
        position: absolute;
        left: 0;
        bottom: -8px;
        color: #fff;
        font-size: 12px;
        line-height: 14px;
        width: 100%;
        background: $offline;
        @include border-radius(3px);
        padding: 2px 5px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

.ngdialog-theme-default {
    &.dmt-country-list-dialog {
        padding-top: 80px;
        padding-bottom: 0;

        .ngdialog-content {
            background: #fff;
        }

        h3 {
            color: $light-blue;
            margin-top: 0;
            font-size: 20px;
        }

        p {
            margin-top: 10px;
            line-height: 20px;
        }

        .dmt-country-list {

            color: $dark-gray;

            ul {
                height: 390px;
                overflow-y: scroll;
                list-style-type: none;
                margin: 0;
                padding: 0;

                li {
                    cursor: pointer;
                    height: 45px;
                    line-height: 45px;
                    border-bottom: 1px solid $light-gray;

                    &:nth-child(2) {
                        border-bottom: 4px solid $light-gray;
                    }

                    > span {
                        display: inline-block;
                        height: 45px;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                        width: 100%;
                    }
                }
            }

            hr {
                border: 1px solid $dark-gray;
                position: relative;
                width: 100%;
            }

            .dmt-cancel-button {
                margin-top: 20px;
                margin-bottom: 0;
            }
        }
    }

    &.dmt-hint-country-dialog {
        .ngdialog-content {
            width: 350px !important;
            background: #fff;
            color: $dark-gray;

            h3 {
                b {
                    color: $light-blue;
                    font-size: 30px;
                    line-height: 36px;
                    display: inline-block;
                    margin-top: 7px;
                }
            }

            hr {
                border: 1px solid $light-gray;
                position: relative;
            }

            .dmt-action-button {
                display: inline-block;
                width: 40%;
                text-transform: none;
                margin: 15px 0 0;

                &.dmt-cancel-button {
                    width: 55%;
                    margin-left: 5%;
                    font-size: 13px;
                    position: relative;
                    top: -2px;
                }
            }
        }
    }
}

.dmt-no-touch {

    .dmt-country-list {
        ul {
            li {
                &:hover {
                    @include dark-gray-rgba(0.1);
                }
            }
        }
    }

}

@media only screen and (max-device-width: 737px) {
    .ngdialog-theme-default {
        &.dmt-country-list-dialog {
            padding-top: 40px;

            .ngdialog-content {
                height: auto;
            }

            .dmt-country-list {
                ul {
                    height: 200px;
                }
            }
        }
    }
}