+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/shared/popover/despachos-options/despachos-options.page.scss b/src/app/shared/popover/despachos-options/despachos-options.page.scss
new file mode 100644
index 000000000..009bb2ba4
--- /dev/null
+++ b/src/app/shared/popover/despachos-options/despachos-options.page.scss
@@ -0,0 +1,56 @@
+.container{
+ --padding-top:20px !important;
+ --padding-bottom:20px !important;
+ --padding-start:20px !important;
+ --padding-end:20px !important;
+}
+.arrow-right {
+ display: none;
+ margin-bottom: 20px;
+ .arrow-right-icon {
+ width: 37px;
+ float: right;
+ font-size: 35px;
+ overflow: hidden;
+ }
+}
+.buttons {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-around;
+}
+.solid {
+ display: none;
+ width: 90%;
+ border-top: 1px solid #bbb;
+ margin: 0 auto !important;
+ }
+ .btn-ok, .btn-cancel{
+ //width: 50% !important;
+ margin-bottom: 5px !important;
+ margin-top: 5px !important;
+}
+@media only screen and (max-width: 800px) {
+ .btn-ok, .btn-cancel, .btn-delete{
+ width: 47% !important;
+ }
+}
+@media only screen and (min-width: 1024px) {
+ .arrow-right{
+ display: flex;
+ justify-content: flex-end;
+ }
+ .btn-cancel{
+ display: none;
+ width: 100% !important;
+ margin-bottom: 10px !important;
+ }
+ .btn-delete, .btn-ok{
+ width: 100% !important;
+ margin-bottom: 10px !important;
+ margin-top: 10px !important;
+ }
+ /* .solid{
+ display: block;
+ } */
+}
\ No newline at end of file
diff --git a/src/app/shared/popover/despachos-options/despachos-options.page.spec.ts b/src/app/shared/popover/despachos-options/despachos-options.page.spec.ts
new file mode 100644
index 000000000..80e0e3a7f
--- /dev/null
+++ b/src/app/shared/popover/despachos-options/despachos-options.page.spec.ts
@@ -0,0 +1,24 @@
+import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
+import { IonicModule } from '@ionic/angular';
+
+import { DespachosOptionsPage } from './despachos-options.page';
+
+describe('DespachosOptionsPage', () => {
+ let component: DespachosOptionsPage;
+ let fixture: ComponentFixture